diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-06-13 19:54:27 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-06-13 19:54:27 +0800 |
commit | 53410fd11fbd3206c8a7c4b56be90f2401849c09 (patch) | |
tree | b9d923943d8f37bf1759b79dfe808cc0d7a5028e | |
parent | 88a6a79857daa0b2b2b1b03b7c8bbca8a3f6b78c (diff) |
Update remaining wrappers for different build dir
-rwxr-xr-x | aarch64-linux-android-configure | 2 | ||||
-rwxr-xr-x | arm-apple-darwin11-configure | 2 | ||||
-rwxr-xr-x | arm-linux-androideabi-configure | 2 | ||||
-rwxr-xr-x | i686-w64-mingw32-configure | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/aarch64-linux-android-configure b/aarch64-linux-android-configure index 8690ece..bcd62de 100755 --- a/aarch64-linux-android-configure +++ b/aarch64-linux-android-configure @@ -6,4 +6,4 @@ export CC=$TOOLCHAIN/bin/$TARGET$API-clang export PREFIX=$TOOLCHAIN/sysroot/usr export CPPFLAGS="$CPPFLAGS -DDEBUG" export CFLAGS="$CFLAGS -g" -./configure --host=$TARGET --prefix=$PREFIX --libdir=$PREFIX/lib/$TARGET/$API --disable-static +../configure --host=$TARGET --prefix=$PREFIX --libdir=$PREFIX/lib/$TARGET/$API --disable-static diff --git a/arm-apple-darwin11-configure b/arm-apple-darwin11-configure index e08a058..538b532 100755 --- a/arm-apple-darwin11-configure +++ b/arm-apple-darwin11-configure @@ -3,4 +3,4 @@ export TARGET=arm-apple-darwin11 export CC=ios-clang export PREFIX=/opt/iPhoneOS8.1.sdk/usr export CFLAGS="$CFLAGS -g0 -O2" -./configure --host=$TARGET --prefix=$PREFIX --disable-shared +../configure --host=$TARGET --prefix=$PREFIX --disable-shared diff --git a/arm-linux-androideabi-configure b/arm-linux-androideabi-configure index 20d62ec..9886fc8 100755 --- a/arm-linux-androideabi-configure +++ b/arm-linux-androideabi-configure @@ -7,4 +7,4 @@ export TARGET=arm-linux-androideabi export PREFIX=$TOOLCHAIN/sysroot/usr export CPPFLAGS="$CPPFLAGS -DDEBUG" export CFLAGS="$CFLAGS -g" -./configure --host=$TARGET --prefix=$PREFIX --libdir=$PREFIX/lib/$TARGET/$API --disable-static +../configure --host=$TARGET --prefix=$PREFIX --libdir=$PREFIX/lib/$TARGET/$API --disable-static diff --git a/i686-w64-mingw32-configure b/i686-w64-mingw32-configure index 11c3b58..6fff79a 100755 --- a/i686-w64-mingw32-configure +++ b/i686-w64-mingw32-configure @@ -3,4 +3,4 @@ export TARGET=i686-w64-mingw32 export CC=$TARGET-gcc export CPPFLAGS="$CPPFLAGS -DDEBUG" export CFLAGS="$CFLAGS -g" -./configure --host=$TARGET --prefix=/usr/$TARGET/usr +../configure --host=$TARGET --prefix=/usr/$TARGET/usr |