Change cc back to cpp for now.

Reviewed by:
Submitted by:
This commit is contained in:
Paul Richards 1994-08-21 07:56:40 +00:00
parent 3301cc3c0a
commit 6b4c995bf9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2178

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