From 42d2c6c1be58e1af4cc0eda844e94a394d1f1966 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Mon, 29 Mar 2010 09:35:20 +0200 Subject: [PATCH] [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. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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