aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Richards <paul@FreeBSD.org>1994-08-20 11:22:58 +0000
committerPaul Richards <paul@FreeBSD.org>1994-08-20 11:22:58 +0000
commit74ed9b13d86e4dc8d5856e2dad081cde794cff77 (patch)
treec692609d6fc36e35b82417b9a2dfdc6cb2280337
parente5266259990cf891c7b687ea225a34abe355bb9c (diff)
Notes
-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 26f80d61cf010..535a4301f8345 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
- 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