diff options
author | Philip Withnall <philip@tecnocode.co.uk> | 2010-08-25 09:28:54 +0100 |
---|---|---|
committer | Philip Withnall <philip@tecnocode.co.uk> | 2010-08-25 09:28:54 +0100 |
commit | c57da8c600e9581b3caa35955fbb0210935b30e3 (patch) | |
tree | 7818de77f73f999d7a98e79fcd8951281dd5a34a | |
parent | 40c1e0506dc7e5bb336717bd9aa05257a27ae9c1 (diff) | |
download | libgdata-c57da8c600e9581b3caa35955fbb0210935b30e3.tar.gz |
build: Clean up checking logic
-rw-r--r-- | docs/reference/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am index 00dea4f8..1c09278d 100644 --- a/docs/reference/Makefile.am +++ b/docs/reference/Makefile.am @@ -117,7 +117,7 @@ check-xml-includes: @any_missing=0; find $(srcdir) -name "*.xml" | while read x; do \ xml_file="$${x#./}"; \ if test "x$$xml_file" != "x$(DOC_MAIN_SGML_FILE)"; then \ - if grep "\"$$xml_file\"" $(DOC_MAIN_SGML_FILE) >/dev/null; then :; else \ + if ! grep "\"$$xml_file\"" $(DOC_MAIN_SGML_FILE) >/dev/null; then \ echo "$(DOC_MAIN_SGML_FILE) doesn't appear to include \"$$xml_file\""; \ any_missing=1; \ fi; \ |