main/swig: specify python3 path otherwise check fails

This commit is contained in:
Francesco Colista 2018-05-08 06:26:51 +00:00
parent 25342369e0
commit 7ca9bd6d64

View File

@ -1,7 +1,7 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org> # Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=swig pkgname=swig
pkgver=3.0.12 pkgver=3.0.12
pkgrel=2 pkgrel=3
pkgdesc="A compiler that makes it easy to integrate C and C++ code with scripting languages" pkgdesc="A compiler that makes it easy to integrate C and C++ code with scripting languages"
url="http://www.swig.org/" url="http://www.swig.org/"
arch="all" arch="all"
@ -17,7 +17,8 @@ build() {
./configure \ ./configure \
--build=$CBUILD \ --build=$CBUILD \
--host=$CHOST \ --host=$CHOST \
--prefix=/usr --prefix=/usr \
--with-python3=/usr/bin/python
make make
} }