Make mkdep throw away stderr

git-svn-id: https://origsvn.digium.com/svn/libpri/trunk@126 2fbb986a-6c06-0410-b554-c9c1f0a7f128
This commit is contained in:
James Golovich
2004-06-29 15:19:15 +00:00
parent 5166adfb1e
commit e88ac71b3d

4
mkdep
View File

@@ -82,9 +82,9 @@ umask $um
trap 'rm -rf $DTMP ; trap 2 ; kill -2 $$' 1 2 3 13 15
if [ x$pflag = x ]; then
${CC:-cc} -M "$@" | sed -e 's; \./; ;g' > $TMP
${CC:-cc} -M "$@" 2>/dev/null | sed -e 's; \./; ;g' > $TMP
else
${CC:-cc} -M "$@" | sed -e 's;\.o :; :;' -e 's; \./; ;g' > $TMP
${CC:-cc} -M "$@" 2>/dev/null | sed -e 's;\.o :; :;' -e 's; \./; ;g' > $TMP
fi
if [ $? != 0 ]; then