diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2019-05-16 14:32:11 +0200 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2019-05-16 14:32:11 +0200 |
commit | a705e59b07b8d3c4816be2e3609187c072b7836e (patch) | |
tree | 152d18a4e86eb010eed1c19ffb2fdfebde03dbdb | |
parent | 4727c8061bd6ecec7d381b7fe7081acb2f14a16d (diff) | |
download | aports-a705e59b07b8d3c4816be2e3609187c072b7836e.tar.bz2 aports-a705e59b07b8d3c4816be2e3609187c072b7836e.tar.xz |
community/libplist: fix build
cython binary was moved to the py3 subpackage, the py2 subpackage only
provides a cython2 binary. Specify the name of this binary to fix the
build with py2-cython.
-rw-r--r-- | community/libplist/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/community/libplist/APKBUILD b/community/libplist/APKBUILD index 1c2c2c5fc5..79d9588d2e 100644 --- a/community/libplist/APKBUILD +++ b/community/libplist/APKBUILD @@ -18,7 +18,7 @@ build() { cd "$srcdir" mkdir -p "$_builddir" cd "$_builddir" - $_src/configure \ + ac_cv_path_CYTHON=cython2 $_src/configure \ --build=$CBUILD \ --host=$CHOST \ --prefix=/usr \ |