1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-06-03 02:38:44 +02:00
build/util/autotools.sh
David Oberhollenzer 38a9b5865c Add libdir to autotools configuration
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
2018-09-30 02:36:59 +02:00

16 lines
502 B
Bash

run_configure() {
local srcdir="$1"
shift
ac_cv_func_malloc_0_nonnull=yes \
ac_cv_func_realloc_0_nonnull=yes \
$srcdir/configure --prefix="" --build="$HOSTTUPLE" --host="$TARGET" \
--bindir="/bin" --sbindir="/bin" --sysconfdir="/etc" \
--libexecdir="/lib/libexec" --datarootdir="/share" \
--datadir="/share" --sharedstatedir="/share" \
--with-bashcompletiondir="/share/bash-completion/completions" \
--includedir="/include" \
--libdir="/lib" \
--enable-shared --disable-static $@
}