diff options
author | Ian Lynagh <igloo@earth.li> | 2008-08-06 11:31:02 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-08-06 11:31:02 +0000 |
commit | 1935abf4ff26791439074669727c12923c216e35 (patch) | |
tree | 8053781b40f1370518720080758f38f908d406b3 /validate | |
parent | 897301c7e96976aae30ed6ad23b0b682151cd734 (diff) | |
download | haskell-1935abf4ff26791439074669727c12923c216e35.tar.gz |
Ooops; lack of mk/confi.mk doesn't mean validate shouldn't run configure!
Diffstat (limited to 'validate')
-rw-r--r-- | validate | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -53,8 +53,10 @@ fi if [ $testsuite_only -eq 0 ]; then -if [ $no_clean -eq 0 ] && [ -f mk/config.mk ]; then - make distclean +if [ $no_clean -eq 0 ]; then + if [ -f mk/config.mk ]; then + make distclean + fi case $OSTYPE in cygwin|msys) config_args=--build=i386-unknown-mingw32 |