For some ungodly reason my etags doesn't have an --output option, but it

does have -o.
This commit is contained in:
Peter Eisentraut 2001-03-14 21:07:16 +00:00
parent e6a4413481
commit b651540720
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
trap "rm -f /tmp/$$" 0 1 2 3 15
rm -f ./TAGS
find `pwd`/ -type f -name '*.[chyl]' -print | \
xargs etags --append --output=TAGS
xargs etags --append -o TAGS
find . -type d -print | \
while read DIR; do