mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-24 13:42:16 +00:00
[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.
This commit is contained in:
parent
4554bc189d
commit
42d2c6c1be
2
Makefile
2
Makefile
@ -543,7 +543,7 @@ clean:
|
|||||||
rm -f haproxy-$(VERSION) nohup.out gmon.out
|
rm -f haproxy-$(VERSION) nohup.out gmon.out
|
||||||
|
|
||||||
tags:
|
tags:
|
||||||
find src include -name '*.c' -o -name '*.h' -print0 | \
|
find src include \( -name '*.c' -o -name '*.h' \) -print0 | \
|
||||||
xargs -0 etags --declarations --members
|
xargs -0 etags --declarations --members
|
||||||
|
|
||||||
tar: clean
|
tar: clean
|
||||||
|
Loading…
Reference in New Issue
Block a user