aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/mkdep/mkdep.gcc.sh
diff options
context:
space:
mode:
authorPaul Richards <paul@FreeBSD.org>1994-08-21 07:56:40 +0000
committerPaul Richards <paul@FreeBSD.org>1994-08-21 07:56:40 +0000
commit6b4c995bf92a63ab1582e73dd8f8c2369b80f82b (patch)
tree4200a474dc35f62aaf43e401b2519b4f36257c65 /usr.bin/mkdep/mkdep.gcc.sh
parent3301cc3c0a662e87eaedb3f0c0733638cd9b4188 (diff)
downloadsrc-6b4c995bf92a63ab1582e73dd8f8c2369b80f82b.tar.gz
src-6b4c995bf92a63ab1582e73dd8f8c2369b80f82b.zip
Change cc back to cpp for now.
Reviewed by: Submitted by:
Notes
Notes: svn path=/head/; revision=2178
Diffstat (limited to 'usr.bin/mkdep/mkdep.gcc.sh')
-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 535a4301f834..26f80d61cf01 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