Skip to content

Commit b651540

Browse files
committed
For some ungodly reason my etags doesn't have an --output option, but it
does have -o.
1 parent e6a4413 commit b651540

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/make_etags

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
trap "rm -f /tmp/$$" 0 1 2 3 15
33
rm -f ./TAGS
44
find `pwd`/ -type f -name '*.[chyl]' -print | \
5-
xargs etags --append --output=TAGS
5+
xargs etags --append -o TAGS
66

77
find . -type d -print | \
88
while read DIR; do

0 commit comments

Comments
 (0)