From: Willy Tarreau Date: Mon, 29 Mar 2010 07:35:20 +0000 (+0200) Subject: [BUILD] 'make tags' did not consider files ending in '.c' X-Git-Tag: v1.4.3~2 X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw/static/gitweb.js?a=commitdiff_plain;h=42d2c6c1be58e1af4cc0eda844e94a394d1f1966;p=haproxy.git [BUILD] 'make tags' did not consider files ending in '.c' A missing parenthesis made the output of find apply only to files '.h' making the tags useless. --- diff --git a/Makefile b/Makefile index 4c1335582..1071c8580 100644 --- a/Makefile +++ b/Makefile @@ -543,7 +543,7 @@ clean: rm -f haproxy-$(VERSION) nohup.out gmon.out tags: - find src include -name '*.c' -o -name '*.h' -print0 | \ + find src include \( -name '*.c' -o -name '*.h' \) -print0 | \ xargs -0 etags --declarations --members tar: clean