mirror of
https://github.com/moparisthebest/curl
synced 2025-01-09 13:08:00 -05:00
16 lines
369 B
Bash
Executable File
16 lines
369 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test -z "$ACLOCAL_FLAGS"; then
|
|
ACLOCAL_FLAGS="-I m4"
|
|
else
|
|
ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I m4"
|
|
fi
|
|
export ACLOCAL_FLAGS
|
|
echo "cares buildconf: using ACLOCAL_FLAGS: $ACLOCAL_FLAGS"
|
|
|
|
${LIBTOOLIZE:-libtoolize} --copy --automake --force
|
|
${ACLOCAL:-aclocal} $ACLOCAL_FLAGS
|
|
${AUTOHEADER:-autoheader}
|
|
${AUTOCONF:-autoconf}
|
|
${AUTOMAKE:-automake} --add-missing
|