Change cc back to cpp for now.

Reviewed by:
Submitted by:
This commit is contained in:
paul 1994-08-21 07:56:40 +00:00
parent ef6f4b86ab
commit d8d07f969e

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
cc -M $* | sed -e 's; \./; ;g' > $TMP
cpp -M $* | sed -e 's; \./; ;g' > $TMP
else
cc -M $* | sed -e 's;\.o :; :;' -e 's; \./; ;g' > $TMP
cpp -M $* | sed -e 's;\.o :; :;' -e 's; \./; ;g' > $TMP
fi
if [ $? != 0 ]; then