summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/autogen.sh b/autogen.sh
index ae9d8c7..4bbaa55 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -3,8 +3,8 @@
set -e
-autoheader &
-aclocal -I m4 --install
-autoconf
+{ ${AUTOHEADER:-autoheader} && touch config.h; } &
+${ACLOCAL:-aclocal} -I m4 --install && touch aclocal.m4
+${AUTOCONF:-autoconf} && touch configure
wait