about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2011-04-28 21:21:31 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2011-04-28 21:21:31 +0000
commit38df4bf8cd481682749b6e44547328123bd562fd (patch)
tree08b5ba0a5b4e6c384da7269b0dbde6cefa225f12
parent34f10a0a6fa1c1cd4098048e2a4cfb88a39e5807 (diff)
downloadnetpbm-mirror-38df4bf8cd481682749b6e44547328123bd562fd.tar.gz
netpbm-mirror-38df4bf8cd481682749b6e44547328123bd562fd.tar.xz
netpbm-mirror-38df4bf8cd481682749b6e44547328123bd562fd.zip
Fix selection of mingw compiler
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@1478 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-rwxr-xr-xbuildtools/configure.pl2
-rw-r--r--doc/HISTORY3
2 files changed, 4 insertions, 1 deletions
diff --git a/buildtools/configure.pl b/buildtools/configure.pl
index 9f219648..e532e9af 100755
--- a/buildtools/configure.pl
+++ b/buildtools/configure.pl
@@ -646,7 +646,7 @@ sub getCompiler($$$) {
     if (commandExists('x86_64-w64-mingw32-gcc')) {
         printf("Do you want to use the Mingw-w64 Cross-Compiler?\n");
 
-        if (promptYesNo('y') == "y") {
+        if (promptYesNo('y') eq "y") {
             $$compilerR = 'x86_64-w64-mingw32-gcc';
         }
     }
diff --git a/doc/HISTORY b/doc/HISTORY
index 97fb1f1f..3b839f59 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -23,6 +23,9 @@ not yet  BJH  Release 10.55.00
               as they no longer refer to private members of the pnginfo
               structure.
 
+              configure: fix selection of mingw compiler.  Introduced in
+              10.48.
+
 11.03.30 BJH  Release 10.54.00
 
               Add pamrubber.  Thanks Willem van Schaik <willem@schaik.com>.