diff options
author | anton <anton@cvs.openbsd.org> | 2017-05-31 07:48:05 +0000 |
---|---|---|
committer | anton <anton@cvs.openbsd.org> | 2017-05-31 07:48:05 +0000 |
commit | e330c946ab6b05d5f7cedbf2fcf14032610e12e3 (patch) | |
tree | fbe91681fa0e9eec13485b32d291585c49cb9d97 /share | |
parent | dd0b5e62287589d555650551b8bf300f4b6c23c4 (diff) |
Drop -t option from ctags call.
The option has been deprecated for almost 7 years by now.
ok tb@
Diffstat (limited to 'share')
-rw-r--r-- | share/mk/bsd.dep.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/mk/bsd.dep.mk b/share/mk/bsd.dep.mk index 71d84fcd779..e693dcf5e7d 100644 --- a/share/mk/bsd.dep.mk +++ b/share/mk/bsd.dep.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.dep.mk,v 1.12 2016/09/04 00:34:29 patrick Exp $ +# $OpenBSD: bsd.dep.mk,v 1.13 2017/05/31 07:48:04 anton Exp $ # $NetBSD: bsd.dep.mk,v 1.12 1995/09/27 01:15:09 christos Exp $ # some of the rules involve .h sources, so remove them from mkdep line @@ -40,7 +40,7 @@ afterdepend: .if !target(tags) . if defined(SRCS) tags: ${SRCS} _SUBDIRUSE - -cd ${.CURDIR}; ${CTAGS} -f /dev/stdout -d -t ${.ALLSRC:N*.h} | \ + -cd ${.CURDIR}; ${CTAGS} -f /dev/stdout -d ${.ALLSRC:N*.h} | \ sed "s;\${.CURDIR}/;;" > tags . else tags: |