From: Peter Eisentraut Date: Wed, 14 Mar 2001 21:07:16 +0000 (+0000) Subject: For some ungodly reason my etags doesn't have an --output option, but it X-Git-Tag: REL7_1~188 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b651540720c3a1286083c65994df4abc60d39105;p=thirdparty%2Fpostgresql.git For some ungodly reason my etags doesn't have an --output option, but it does have -o. --- 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