aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamiro Polla <ramiro.polla@gmail.com>2009-01-11 21:10:35 +0000
committerRamiro Polla <ramiro.polla@gmail.com>2009-01-11 21:10:35 +0000
commitab18e4f6605a234d091649f9ea48f400ec5156bb (patch)
tree9634ad9830cfa29a465f8f3661cf450de322762a
parent0122e850f57bb0cfb16ba28faa5a094590ab6cd9 (diff)
downloaddlfcn-win32-ab18e4f6605a234d091649f9ea48f400ec5156bb.tar.gz
dlfcn-win32-ab18e4f6605a234d091649f9ea48f400ec5156bb.tar.bz2
dlfcn-win32-ab18e4f6605a234d091649f9ea48f400ec5156bb.zip
Redirect output from tests to /dev/null properly.
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index df2b494..ab4459e 100755
--- a/configure
+++ b/configure
@@ -145,7 +145,7 @@ if enabled msvc; then
145 echo "There's no need to create an import lib." 145 echo "There's no need to create an import lib."
146 exit 1 146 exit 1
147 } 147 }
148 lib /? >& /dev/null || { 148 lib /? > /dev/null 2>&1 /dev/null || {
149 echo "MSVC's lib command not found." 149 echo "MSVC's lib command not found."
150 echo "Make sure MSVC is installed and its bin folder is in your \$PATH." 150 echo "Make sure MSVC is installed and its bin folder is in your \$PATH."
151 exit 1 151 exit 1
@@ -153,7 +153,7 @@ if enabled msvc; then
153fi 153fi
154 154
155if enabled shared; then 155if enabled shared; then
156 lib /? >& /dev/null && enable msvc || disable msvc 156 lib /? > /dev/null 2>&1 /dev/null && enable msvc || disable msvc
157fi 157fi
158 158
159echo "# Automatically generated by configure" > config.mak 159echo "# Automatically generated by configure" > config.mak