diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2011-10-05 08:09:51 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2011-10-05 08:09:51 +0000 |
commit | ac19dd0df7a3ba451bf547971d7e93ca605fa34a (patch) | |
tree | b5ea90416d40ee62d63cc45eb41884d2d48fbd03 | |
parent | e8fee3a50011a4644de4bbb64b6ba72905b4e4b3 (diff) |
MINGW fixes must come after path evaluation
svn path=/trunk/externals/zexy/; revision=15509
-rwxr-xr-x | autogen.sh | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -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 |