diff options
author | Ian Lynagh <igloo@earth.li> | 2008-10-04 17:53:51 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-10-04 17:53:51 +0000 |
commit | 099e2092e8b172d385eb8213fc86fc9b97f5a82b (patch) | |
tree | c9886780ed5d5d9a5b3c7f3452355a51d75c3d9c /distrib | |
parent | 7f363e9d59ffdd3b6624900f979e49341471ec02 (diff) | |
download | haskell-099e2092e8b172d385eb8213fc86fc9b97f5a82b.tar.gz |
prep-bin-dist-mingw complains if it finds a bad version of windres
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/prep-bin-dist-mingw | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/distrib/prep-bin-dist-mingw b/distrib/prep-bin-dist-mingw index 55411e520a..f98bb88847 100644 --- a/distrib/prep-bin-dist-mingw +++ b/distrib/prep-bin-dist-mingw @@ -115,6 +115,13 @@ if ! [ -d bin ] ; then exit 1; fi; +if [ "`$mingw_bin/windres.exe --version | sed '1p;d'`" = "GNU windres 2.17.50 20060824" ] +then + echo "Bad windres version for $mingw_bin/windres.exe." + echo "2.15.91 and 2.18.50 are known to work." + exit 1 +fi + echo "Removing configure script files...not needed" rm -f config.guess config.sub configure configure.ac mkdirhier rm -f Makefile-bin.in Makefile.in aclocal.m4 install-sh |