aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/mkdep
diff options
context:
space:
mode:
authorRodney W. Grimes <rgrimes@FreeBSD.org>1994-10-03 23:01:03 +0000
committerRodney W. Grimes <rgrimes@FreeBSD.org>1994-10-03 23:01:03 +0000
commitb615e5e776fec4a38eae31e767670658f9b0aba7 (patch)
tree9235635beffacfa122ce13b0742fd9928900afdf /usr.bin/mkdep
parent8819d6eca4966e0bcdb1991f411236f4406fdbab (diff)
downloadsrc-b615e5e776fec4a38eae31e767670658f9b0aba7.tar.gz
src-b615e5e776fec4a38eae31e767670658f9b0aba7.zip
Notes
Diffstat (limited to 'usr.bin/mkdep')
-rw-r--r--usr.bin/mkdep/mkdep.gcc.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/mkdep/mkdep.gcc.sh b/usr.bin/mkdep/mkdep.gcc.sh
index 59e4e470f2f4..8cba090400be 100644
--- a/usr.bin/mkdep/mkdep.gcc.sh
+++ b/usr.bin/mkdep/mkdep.gcc.sh
@@ -80,7 +80,7 @@ MKDEP_CPP=${MKDEP_CPP-"cc -E"}
if [ x$pflag = x ]; then
$MKDEP_CPP -M $* | sed -e 's; \./; ;g' > $TMP
else
- $MKDEP_CPP -M $* | sed -e 's;\.o :; :;' -e 's; \./; ;g' > $TMP
+ $MKDEP_CPP -M $* | sed -e 's;\.o:;:;' -e 's; \./; ;g' > $TMP
fi
if [ $? != 0 ]; then