Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
2721a6db
Commit
2721a6db
authored
Apr 27, 2003
by
qrczak
Browse files
[project @ 2003-04-27 10:37:01 by qrczak]
Strings in perl are compared by eq, not ==. Fixes creating "nul" files on Unix.
parent
149c0374
Changes
1
Hide whitespace changes
Inline
Side-by-side
glafp-utils/mkdependC/mkdependC.prl
View file @
2721a6db
...
...
@@ -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";
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment