]> granicus.if.org Git - apache/commitdiff
Redirect stderr to /dev/null to suppress error messages.
authorSascha Schumann <sascha@apache.org>
Tue, 26 Sep 2000 11:24:56 +0000 (11:24 +0000)
committerSascha Schumann <sascha@apache.org>
Tue, 26 Sep 2000 11:24:56 +0000 (11:24 +0000)
Submitted by: Ralf Engelschall <rse@engelschall.com>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86333 13f79535-47bb-0310-9956-ffa450edef68

build/bsd_makefile
build/sysv_makefile

index 22370ccef70889e61dc11fc33e61c99018701f40..1af9677dbdfb663fd65c7da8cf01ad067570c944 100755 (executable)
@@ -60,7 +60,7 @@ test -f build/bsd_makefile || exit 2
 
 test -f bsd_converted && exit 0
 
-tmpfile=`mktemp /tmp/bsd_makefile.XXXXXX` || tmpfile="tmp.$$"
+tmpfile=`mktemp /tmp/bsd_makefile.XXXXXX 2>/dev/null` || tmpfile="tmp.$$"
 for i in build/*.mk; do
     sed 's/^include \(.*\)/.include "\1"/' $i >$tmpfile \
         && cp $tmpfile $i
index 623279747a1f5c5e31c7cae2de0112f942929b79..9e430acbc86180a50fef88db4246e2cc4c04009b 100755 (executable)
@@ -60,7 +60,7 @@ test -f build/sysv_makefile || exit 2
 
 test -f bsd_converted || exit 1
 
-tmpfile=`mktemp /tmp/sysv_makefile.XXXXXX` || tmpfile="tmp.$$"
+tmpfile=`mktemp /tmp/sysv_makefile.XXXXXX 2>/dev/null` || tmpfile="tmp.$$"
 for i in build/*.mk; do
     sed 's/^\.include "\(.*\)"/include \1/' $i >$tmpfile \
         && cp $tmpfile $i