aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2011-10-05 08:09:51 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2011-10-05 08:09:51 +0000
commitac19dd0df7a3ba451bf547971d7e93ca605fa34a (patch)
treeb5ea90416d40ee62d63cc45eb41884d2d48fbd03
parente8fee3a50011a4644de4bbb64b6ba72905b4e4b3 (diff)
MINGW fixes must come after path evaluation
svn path=/trunk/externals/zexy/; revision=15509
-rwxr-xr-xautogen.sh12
1 files changed, 8 insertions, 4 deletions
diff --git a/autogen.sh b/autogen.sh
index 8ecea6b..e0fbad4 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -8,11 +8,7 @@ case "${KERN}" in
Darwin)
PATH=/sw/bin:${PATH}
;;
- MINGW*)
- AUTORECONF=""
- ;;
*)
- echo "kernel $KERN"
;;
esac
@@ -28,6 +24,14 @@ LIBTOOL=$(which libtool)
LIBTOOLIZE=$(which libtoolize)
AUTOCONF=$(which autoconf)
+case "${KERN}" in
+ MINGW*)
+ AUTORECONF=""
+ ;;
+ *)
+ ;;
+esac
+
#check whether the system supports pushd/popd
if pushd . > /dev/null 2>&1