[project @ 2003-04-27 10:37:01 by qrczak]
authorqrczak <unknown>
Sun, 27 Apr 2003 10:37:01 +0000 (10:37 +0000)
committerqrczak <unknown>
Sun, 27 Apr 2003 10:37:01 +0000 (10:37 +0000)
Strings in perl are compared by eq, not ==.
Fixes creating "nul" files on Unix.

glafp-utils/mkdependC/mkdependC.prl

index f915765..b8f853a 100644 (file)
@@ -24,7 +24,7 @@ $Makefile = '';
 $baseName='';
 $ignore_output='> /dev/null';
 
-if ( ${BUILDPLATFORM} == "i386-unknown-mingw32" ) {
+if ( ${BUILDPLATFORM} eq "i386-unknown-mingw32" ) {
     # Assuming the underlying perl uses cmd to exec system() calls.
     $ignore_output = ">nul";
 }