mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-21 14:17:30 -04: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
1 changed files with 1 additions and 1 deletions
2
Makefile
2
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
|
||||
|
|
|
|||
Loading…
Reference in a new issue