summaryrefslogtreecommitdiff
path: root/config.lib
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-04-12 01:10:06 +0000
committerrubidium <rubidium@openttd.org>2009-04-12 01:10:06 +0000
commitaf37375e115c5e1a83812fff4e08fc992e8ceb4b (patch)
treed2d1f65e7fe936e7678a47e28284d196f14c1343 /config.lib
parent47e2901e181e8d3da4fc9ba8365fa897348b83f1 (diff)
downloadopenttd-af37375e115c5e1a83812fff4e08fc992e8ceb4b.tar.xz
(svn r16035) -Fix: dash wasn't able to run iconv detection
Diffstat (limited to 'config.lib')
-rw-r--r--config.lib4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.lib b/config.lib
index 547c47c3a..fda308f81 100644
--- a/config.lib
+++ b/config.lib
@@ -2405,7 +2405,7 @@ int main() {
}
EOF
execute="$cxx_host $CFLAGS -c tmp.iconv.cpp -o tmp.iconv -DTESTING 2>&1"
- eval $execute >&/dev/null
+ eval $execute > /dev/null
ret=$?
log 2 "executing $execute"
log 2 " exit code $ret"
@@ -2426,7 +2426,7 @@ int main() {
}
EOF
execute="$cxx_host $CFLAGS tmp.iconv.cpp -o tmp.iconv -DTESTING 2>&1"
- eval $execute >&/dev/null
+ eval $execute > /dev/null
ret=$?
log 2 "executing $execute"
log 2 " exit code $ret"