diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2018-08-10 00:43:43 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2018-08-10 00:49:08 +0200 |
commit | a6f6a23355c94007c3e4a17819e99e08df93f7ba (patch) | |
tree | 6fedb51b35365f8a21ef088288cd180fc222a563 /autogen.sh | |
parent | 44f797d1ccfb8a4ddc19324e6be5e3c8fe8adae5 (diff) |
autogen.sh, configure.ac: fix build for mingw-w64 xcompiler, cleanup superfluous code
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 16 |
1 files changed, 6 insertions, 10 deletions
@@ -1,16 +1,12 @@ #!/bin/bash -set -e set -x -OLDPWD=$(pwd) -cd $(dirname $0) -test -f Makefile && make distclean +if ! autoreconf -fi; then + aclocal + autoheader + automake --force-missing --add-missing + autoconf +fi -aclocal -autoheader -automake --force-missing --add-missing -autoconf - -cd ${OLDPWD} $(dirname $0)/configure $@ && make -j${BUILDJOBS:-4} all |