From: Stefan Kost Date: Mon, 17 Oct 2005 20:18:32 +0000 (+0000) Subject: gtk-doc.mak: make build break on new api that has not been added to the sections... X-Git-Tag: RELEASE-0_9_4~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=30c7a70b1d4765d26789950ca8e983284c0a05b3;p=platform%2Fupstream%2Fgst-common.git gtk-doc.mak: make build break on new api that has not been added to the sections file Original commit message from CVS: * gtk-doc.mak: make build break on new api that has not been added to the sections file --- diff --git a/ChangeLog b/ChangeLog index cae7298..688fc3c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-10-18 Stefan Kost + + * gtk-doc.mak: + make build break on new api that has not been added to the + sections file + 2005-10-17 Thomas Vander Stichele * m4/gst-glib2.m4: diff --git a/gtk-doc.mak b/gtk-doc.mak index a5c81e8..37af4ac 100644 --- a/gtk-doc.mak +++ b/gtk-doc.mak @@ -94,9 +94,8 @@ tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections touch $(DOC_MODULE)-decl.txt ; \ fi gtkdoc-mktmpl --module=$(DOC_MODULE) | tee tmpl-build.log - @cat $(DOC_MODULE)-unused.txt - @if ! test -z "`grep -v GstPoptOption $(DOC_MODULE)-unused.txt`"; then \ - true; fi # exit 1; fi + @if test -s $(DOC_MODULE)-unused.txt; then \ + exit 1; fi rm -f tmpl-build.log touch tmpl-build.stamp