diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-11-03 20:08:04 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-11-03 20:08:04 +0000 |
commit | 42656e007bfd4fdbad4bdade56e62aac27cbeda1 (patch) | |
tree | 363b1768594dc1b32dc0530e23bbe0d2f98f23ce /sys/arch/macppc | |
parent | ce9ff548c15aadd04189a6d1c5aa3f56e58556c9 (diff) |
no need to specify the -t flag to ctags
Diffstat (limited to 'sys/arch/macppc')
-rw-r--r-- | sys/arch/macppc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/macppc/Makefile b/sys/arch/macppc/Makefile index 7dc06a8beb7..3e872b59b7d 100644 --- a/sys/arch/macppc/Makefile +++ b/sys/arch/macppc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 2010/05/31 22:21:43 deraadt Exp $ +# $OpenBSD: Makefile,v 1.7 2010/11/03 20:08:03 deraadt Exp $ S= ${.CURDIR}/../.. KFILE= GENERIC @@ -27,7 +27,7 @@ tags:: eval "SFILES=\"`make -V SFILES -f $${TDIR}/Makefile`\"" && \ eval "CFILES=\"`make -V CFILES -f $${TDIR}/Makefile`\"" && \ eval "AFILES=\"`make -V AFILES -f $${TDIR}/Makefile`\"" && \ - ctags -wdt -f ${TAGS} $${CFILES} && \ + ctags -wd -f ${TAGS} $${CFILES} && \ egrep "^[_A-Z]*ENTRY[_A-Z]*\(.*\)" $${SFILES} $${AFILES} | \ sed "s;\\([^:]*\\):\\([^(]*\\)(\\([^, )]*\\)\\(.*\\);\\3 \\1 /^\\2(\\3\\4$$/;" \ >> ${TAGS} && \ |