common/environment/0002-cross.sh: only export autoconf cache vars for supported build styles.
This commit is contained in:
parent
1c4e906d5a
commit
6217ab55af
1 changed files with 4 additions and 2 deletions
|
@ -9,8 +9,10 @@ PKG_CONFIG_SYSROOT_DIR="$XBPS_CROSS_BASE"
|
|||
PKG_CONFIG_PATH="$XBPS_CROSS_BASE/lib/pkgconfig:$XBPS_CROSS_BASE/usr/share/pkgconfig"
|
||||
PKG_CONFIG_LIBDIR="$XBPS_CROSS_BASE/lib/pkgconfig"
|
||||
|
||||
if [ "$build_style" = "gnu-configure" -o -z "$build_style" ]; then
|
||||
configure_args+=" --host=$XBPS_CROSS_TRIPLET --with-sysroot=$XBPS_CROSS_BASE --with-libtool-sysroot=$XBPS_CROSS_BASE "
|
||||
configure_args+=" --host=$XBPS_CROSS_TRIPLET --with-sysroot=$XBPS_CROSS_BASE --with-libtool-sysroot=$XBPS_CROSS_BASE "
|
||||
|
||||
if [ -z "$build_style" -o "$build_style" != "gnu-configure" ]; then
|
||||
set +a; return 0
|
||||
fi
|
||||
|
||||
# Read autoconf cache variables for cross target (taken from OE).
|
||||
|
|
Loading…
Reference in a new issue