environment/configure/gnu-configure-args.sh: do not expand exec_prefix

the expansion did at least result in invalid pkgconfig
and cmake files generated in xapian-core
This commit is contained in:
John 2021-02-05 20:22:52 +01:00 committed by John Zimmermann
parent 83a8f2de2f
commit 7c495a8ca8

View file

@ -17,7 +17,7 @@ export configure_args+=" --host=$XBPS_TRIPLET --build=$XBPS_TRIPLET"
# Always use wordsize-specific libdir even though the real path is lib
# This is to make sure 32-bit and 64-bit libs can coexist when looking
# up things (the opposite-libdir is always symlinked as libNN)
export configure_args+=" --libdir=/usr/lib${XBPS_TARGET_WORDSIZE}"
export configure_args+=" --libdir=\${exec_prefix}/lib${XBPS_TARGET_WORDSIZE}"
_AUTOCONFCACHEDIR=${XBPS_COMMONDIR}/environment/configure/autoconf_cache