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.]
This commit is contained in:
parent
f5396cf3c7
commit
af5ebef33b
1 changed files with 1 additions and 8 deletions
|
|
@ -1,11 +1,4 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
mkdir -p autotools
|
autoreconf -fi
|
||||||
|
|
||||||
aclocal
|
|
||||||
autoheader
|
|
||||||
automake -ac
|
|
||||||
autoconf
|
|
||||||
automake
|
|
||||||
|
|
||||||
./configure "$@"
|
./configure "$@"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue