From af37375e115c5e1a83812fff4e08fc992e8ceb4b Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 12 Apr 2009 01:10:06 +0000 Subject: [PATCH] (svn r16035) -Fix: dash wasn't able to run iconv detection --- config.lib | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.lib b/config.lib index 547c47c3a0..fda308f811 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"