diff options
author | Sascha Schumann <sascha@apache.org> | 2000-09-26 13:24:56 +0200 |
---|---|---|
committer | Sascha Schumann <sascha@apache.org> | 2000-09-26 13:24:56 +0200 |
commit | 1008581089c052c9d5611cf0e9d6d9eb0de23822 (patch) | |
tree | 46f98ae923815ee0035c2f32dd08e35934c6d521 /build/sysv_makefile | |
parent | Style updates. (diff) | |
download | apache2-1008581089c052c9d5611cf0e9d6d9eb0de23822.tar.xz apache2-1008581089c052c9d5611cf0e9d6d9eb0de23822.zip |
Redirect stderr to /dev/null to suppress error messages.
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
Diffstat (limited to 'build/sysv_makefile')
-rwxr-xr-x | build/sysv_makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/sysv_makefile b/build/sysv_makefile index 623279747a..9e430acbc8 100755 --- a/build/sysv_makefile +++ b/build/sysv_makefile @@ -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 |