diff options
| author | Peter Eisentraut | 2001-03-14 21:07:16 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2001-03-14 21:07:16 +0000 |
| commit | b651540720c3a1286083c65994df4abc60d39105 (patch) | |
| tree | dfb3cdae90853c7eafdcaa87d9b95bdcf9c4fdb4 /src/tools | |
| parent | e6a44134815fd35b1e3c957c18eebac09788ced0 (diff) | |
For some ungodly reason my etags doesn't have an --output option, but it
does have -o.
Diffstat (limited to 'src/tools')
| -rwxr-xr-x | src/tools/make_etags | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/make_etags b/src/tools/make_etags index 94b9597aa4..e81bdb6f9a 100755 --- a/src/tools/make_etags +++ b/src/tools/make_etags @@ -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 |
