summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
Diffstat (limited to 'util')
-rwxr-xr-xutil/configure.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/util/configure.sh b/util/configure.sh
index 0c1cfba6f..1a7efc6b0 100755
--- a/util/configure.sh
+++ b/util/configure.sh
@@ -3,4 +3,8 @@ for ltmain in $(find -name ltmain.sh); do
patch -N "${ltmain}" "$(dirname "$0")/libtool.diff" || true
done
-PKG_ROOT=/home/saurik/iphone/sysroot PKG_CONFIG="$(realpath ../../../util/pkg-config.sh) --define-variable=prefix=/home/saurik/iphone/sysroot/usr" PKG_CONFIG_PATH=/home/saurik/iphone/sysroot/usr/lib/pkgconfig ./configure --prefix=/usr --host=arm-apple-darwin --enable-static=no --enable-shared=yes "$@"
+if [[ -z $PKG_CONF ]]; then
+ PKG_CONF=./configure
+fi
+
+PKG_ROOT=/home/saurik/iphone/sysroot PKG_CONFIG="$(realpath ../../../util/pkg-config.sh) --define-variable=prefix=/home/saurik/iphone/sysroot/usr" PKG_CONFIG_PATH=/home/saurik/iphone/sysroot/usr/lib/pkgconfig $PKG_CONF --prefix=/usr --host=arm-apple-darwin --enable-static=no --enable-shared=yes "$@"