diff options
author | Jon TURNEY <jon.turney@dronecode.org.uk> | 2014-06-05 17:31:43 +0100 |
---|---|---|
committer | Jon TURNEY <jon.turney@dronecode.org.uk> | 2014-06-05 17:48:55 +0100 |
commit | d1f4cb04684787d75ff328759719a975919e7951 (patch) | |
tree | 28ce17e43f71fb19a51d0bf7d5623876161ba973 | |
parent | e96b27a0ec639a79b1282ab67bb021e0eeb9aa51 (diff) |
Deal with `cygpath -F 42` not giving an empty string on x86xlaunch-20140605-1
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index b863526..99d858e 100644 --- a/configure.ac +++ b/configure.ac @@ -35,7 +35,7 @@ PKG_CHECK_MODULES([LIBX11], [x11]) # cygpath -F 42 silently fails on 32-bit Windows PFX86=`cygpath -F 42 2>/dev/null` -if test -z "$PFX86" ; then +if ! test -d "$PFX86" ; then PFX86=`cygpath -F 38` fi |