Changed cpp to cc since cpp is hidden away in /usr/libexec

Reviewed by:
Submitted by:
This commit is contained in:
paul 1994-08-20 11:22:58 +00:00
parent 8a342cc412
commit 90b62c4a48

View File

@ -73,9 +73,9 @@ TMP=/tmp/mkdep$$
trap 'rm -f $TMP ; exit 1' 1 2 3 13 15
if [ x$pflag = x ]; then
cpp -M $* | sed -e 's; \./; ;g' > $TMP
cc -M $* | sed -e 's; \./; ;g' > $TMP
else
cpp -M $* | sed -e 's;\.o :; :;' -e 's; \./; ;g' > $TMP
cc -M $* | sed -e 's;\.o :; :;' -e 's; \./; ;g' > $TMP
fi
if [ $? != 0 ]; then