summaryrefslogtreecommitdiffstats
path: root/usr.bin/mkdep
diff options
context:
space:
mode:
authorpaul <paul@FreeBSD.org>1994-08-21 07:56:40 +0000
committerpaul <paul@FreeBSD.org>1994-08-21 07:56:40 +0000
commitd8d07f969e93bb43feefef9582472462ae939153 (patch)
tree4200a474dc35f62aaf43e401b2519b4f36257c65 /usr.bin/mkdep
parentef6f4b86ab038cbd661be4b2c78c57d787f9526f (diff)
downloadFreeBSD-src-d8d07f969e93bb43feefef9582472462ae939153.zip
FreeBSD-src-d8d07f969e93bb43feefef9582472462ae939153.tar.gz
Change cc back to cpp for now.
Reviewed by: Submitted by:
Diffstat (limited to 'usr.bin/mkdep')
-rw-r--r--usr.bin/mkdep/mkdep.gcc.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mkdep/mkdep.gcc.sh b/usr.bin/mkdep/mkdep.gcc.sh
index 535a430..26f80d6 100644
--- a/usr.bin/mkdep/mkdep.gcc.sh
+++ b/usr.bin/mkdep/mkdep.gcc.sh
@@ -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
OpenPOWER on IntegriCloud