gtk-doc-plugins.mak: error out on inspect failure
authorThomas Vander Stichele <thomas@apestaart.org>
Wed, 14 Sep 2005 21:54:32 +0000 (21:54 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Wed, 14 Sep 2005 21:54:32 +0000 (21:54 +0000)
Original commit message from CVS:
* gtk-doc-plugins.mak:
error out on inspect failure

ChangeLog
gtk-doc-plugins.mak

index 89e40e8..e2a958d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
+
+       * gtk-doc-plugins.mak:
+         error out on inspect failure
+
 2005-09-14  Michael Smith <msmith@fluendo.com>
 
        * glib-gen.mak:
index 67d671d..7991b8d 100644 (file)
@@ -118,7 +118,7 @@ inspect:
        mkdir inspect
 
 inspect-update:
-       rm inspect-build.stamp
+       -rm inspect-build.stamp
        make inspect-build.stamp
 
 # FIXME: inspect.timestamp should be written to by gst-xmlinspect.py
@@ -130,10 +130,10 @@ inspect-build.stamp: inspect
            cp $(srcdir)/inspect-build.stamp . ; \
        else \
            $(INSPECT_ENVIRONMENT) $(PYTHON) \
-               $(top_srcdir)/common/gst-xmlinspect.py $(PACKAGE) inspect; \
+               $(top_srcdir)/common/gst-xmlinspect.py $(PACKAGE) inspect && \
            $(INSPECT_ENVIRONMENT) $(PYTHON) \
-               $(top_srcdir)/common/mangle-tmpl.py tmpl; \
-           echo -n "timestamp" > inspect.stamp; \
+               $(top_srcdir)/common/mangle-tmpl.py tmpl && \
+           echo -n "timestamp" > inspect.stamp && \
            touch inspect-build.stamp; \
         fi