aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancesco Colista <fcolista@alpinelinux.org>2018-05-08 06:26:51 +0000
committerFrancesco Colista <fcolista@alpinelinux.org>2018-05-08 06:26:51 +0000
commit7ca9bd6d6447231e8b7d74aabae08c3482547cf6 (patch)
tree4c5b08778877a80184b976a8e7f58c9b71d10331
parent25342369e092f664b463308bf63f94f710a52702 (diff)
main/swig: specify python3 path otherwise check fails
-rw-r--r--main/swig/APKBUILD5
1 files changed, 3 insertions, 2 deletions
diff --git a/main/swig/APKBUILD b/main/swig/APKBUILD
index 61807f7e67d..4ea25b09606 100644
--- a/main/swig/APKBUILD
+++ b/main/swig/APKBUILD
@@ -1,7 +1,7 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=swig
pkgver=3.0.12
-pkgrel=2
+pkgrel=3
pkgdesc="A compiler that makes it easy to integrate C and C++ code with scripting languages"
url="http://www.swig.org/"
arch="all"
@@ -17,7 +17,8 @@ build() {
./configure \
--build=$CBUILD \
--host=$CHOST \
- --prefix=/usr
+ --prefix=/usr \
+ --with-python3=/usr/bin/python
make
}