diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2001-03-14 21:07:16 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2001-03-14 21:07:16 +0000 |
commit | b651540720c3a1286083c65994df4abc60d39105 (patch) | |
tree | dfb3cdae90853c7eafdcaa87d9b95bdcf9c4fdb4 | |
parent | e6a44134815fd35b1e3c957c18eebac09788ced0 (diff) | |
download | postgresql-b651540720c3a1286083c65994df4abc60d39105.tar.gz postgresql-b651540720c3a1286083c65994df4abc60d39105.zip |
For some ungodly reason my etags doesn't have an --output option, but it
does have -o.
-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 94b9597aa40..e81bdb6f9a8 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 |