From b4d02e010406ecc3c146c2f2e84b6a086edef00e Mon Sep 17 00:00:00 2001 From: Andrew Sun Date: Fri, 18 May 2018 01:05:06 -0400 Subject: [PATCH] cython: fix .install file mixup (#3764) This should fix a problem where cython .install scripts got mixed up. This fixes #3759. --- mingw-w64-cython/PKGBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mingw-w64-cython/PKGBUILD b/mingw-w64-cython/PKGBUILD index 6efddadbb7..c3375f4ae4 100644 --- a/mingw-w64-cython/PKGBUILD +++ b/mingw-w64-cython/PKGBUILD @@ -5,7 +5,7 @@ _realname=cython pkgbase=mingw-w64-${_realname} pkgname=("${MINGW_PACKAGE_PREFIX}-cython" "${MINGW_PACKAGE_PREFIX}-cython2") pkgver=0.28.2 -pkgrel=1 +pkgrel=2 pkgdesc="C-Extensions for Python (mingw-w64)" arch=('any') url="http://www.cython.org" @@ -70,7 +70,7 @@ package_cython2() { } package_mingw-w64-i686-cython() { - install=${_realname}2-${CARCH}.install + install=${_realname}-${CARCH}.install package_cython } @@ -80,7 +80,7 @@ package_mingw-w64-i686-cython2() { } package_mingw-w64-x86_64-cython() { - install=${_realname}2-${CARCH}.install + install=${_realname}-${CARCH}.install package_cython }