commit | 42d2c6c1be58e1af4cc0eda844e94a394d1f1966 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Mon Mar 29 09:35:20 2010 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Mon Mar 29 09:35:20 2010 +0200 |
tree | 80a49180f40b3e22809a31e49fc07b7e7226d3fd | |
parent | 4554bc189dc9acba143b1cfc788841134bf88111 [diff] [blame] |
[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 4c13355..1071c85 100644 --- a/Makefile +++ b/Makefile
@@ -543,7 +543,7 @@ 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