aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2017-12-20 00:40:58 +0100
committerToni Uhlig <matzeton@googlemail.com>2017-12-20 00:40:58 +0100
commitdbfa491594e0c84079bebc991107e1b51a228433 (patch)
tree45c42b4abb81067f139b2acdffed18c8612577f8 /autogen.sh
parent8c051422c1673e57ce70cc9dccb6e136d901cc09 (diff)
ptunnel-ng:
* fixed mingw64 cross compile issues * using getaddrinfo instead of obsolete gethostbyname * removed IS_WINDOWS AM_CONDITIONAL
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index 285868c..e0f7942 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -3,11 +3,14 @@
set -e
set -x
-test -f ./Makefile && make distclean
+OLDPWD=$(pwd)
+cd $(dirname $0)
+test -f Makefile && make distclean
aclocal
autoheader
automake --force-missing --add-missing
autoconf
-./configure $@ && make -j${BUILDJOBS:-4} all
+cd ${OLDPWD}
+$(dirname $0)/configure $@ && make -j${BUILDJOBS:-4} all