Commit b6515407 authored by Peter Eisentraut's avatar Peter Eisentraut

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

does have -o.
parent e6a44134
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment