mirror of
https://github.com/pygos/build.git
synced 2024-11-05 03:27:10 +01:00
15 lines
482 B
Bash
15 lines
482 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" \
|
||
|
--enable-shared --disable-static $@
|
||
|
}
|