mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-06 10:28:01 +02:00
check-doc-syntax: Make this work again
Commit ed90616b77 changed the way the awk script gets invoked. Due to a
missing "test", this resulted in the awk script never getting invoked at all.
Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
parent
3e02dccb97
commit
a184de9064
1 changed files with 1 additions and 1 deletions
|
|
@ -71,7 +71,7 @@ if echo $FILES | xargs grep "$note_regexp" /dev/null; then
|
|||
fi >&2
|
||||
|
||||
# Only run the syntax checker on the source files (not doc/)
|
||||
if -e ./check-doc-syntax.awk; then
|
||||
if test -e ./check-doc-syntax.awk; then
|
||||
if echo $FILES | xargs ./check-doc-syntax.awk ; then
|
||||
:
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue