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.ipfire.org/?a=commitdiff_plain;h=42d2c6c1be58e1af4cc0eda844e94a394d1f1966;p=thirdparty%2Fhaproxy.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 4c13355821..1071c85808 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