commit af5ebef33b5c172956d76376bd79f86667e54fba
Author: Jan Engelhardt <jengelh@inai.de>
AuthorDate: Tue Dec 10 17:03:37 2013 +0100
Commit: Jan Engelhardt <jengelh@inai.de>
CommitDate: Tue Dec 10 17:07:22 2013 +0100
build: kill redundant boilerplate in autogen.sh
The auxiliary build directory specified with AC_BUILD_AUX_DIR is
also automatically created AFAICS, so it need not be created
by autogen.sh.
[For directories that are not (such as with AC_CONFIG_MACRO_DIR),
place an empty .gitignore file in it, so that it always exists.]
---
autogen.sh | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/autogen.sh b/autogen.sh
index 0f3d1037..b0763a5c 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,11 +1,4 @@
#!/bin/sh
-mkdir -p autotools
-
-aclocal
-autoheader
-automake -ac
-autoconf
-automake
-
+autoreconf -fi
./configure "$@"