diff options
author | Ian Lynagh <igloo@earth.li> | 2009-09-30 21:05:02 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-09-30 21:05:02 +0000 |
commit | ca9e16a468bef1e40c6675afb0b632f53ca60a09 (patch) | |
tree | ab5cdb13158ee5b9b6a40b1ce7cca013b825c48b /validate | |
parent | ebd7f8bf8a0d96c2a62aba7e9b7042834dfbaa38 (diff) | |
download | haskell-ca9e16a468bef1e40c6675afb0b632f53ca60a09.tar.gz |
We no longer need to specify the gcc and ld location when validating
on Windows, as they are now in-tree
Diffstat (limited to 'validate')
-rw-r--r-- | validate | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -61,18 +61,6 @@ if [ $no_clean -eq 0 ]; then then INSTDIR=`cygpath -m "$INSTDIR"` fi - case $OSTYPE in - cygwin|msys) config_args=--build=i386-unknown-mingw32 - if [ -f c:/mingw/bin/gcc.exe ] - then - config_args="$config_args --with-gcc=c:/mingw/bin/gcc" - fi - if [ -f c:/mingw/bin/ld.exe ] - then - config_args="$config_args --with-ld=c:/mingw/bin/ld" - fi - ;; - esac sh boot ./configure --prefix="$INSTDIR" $config_args |