From: Stefan Kost Date: Wed, 18 May 2011 20:02:08 +0000 (+0300) Subject: plugin-docs: remove needless inspect rule X-Git-Tag: upstream/20130618~68^2~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=87f7e7e7c1be999c03714918535eb56d60bb74cf;p=platform%2Fupstream%2Fgst-common.git plugin-docs: remove needless inspect rule This rule causes rebuilds during make install. We can ensure the directory in the scanobj-build.stamp rule. --- diff --git a/gtk-doc-plugins.mak b/gtk-doc-plugins.mak index eab32ee..ad06a19 100644 --- a/gtk-doc-plugins.mak +++ b/gtk-doc-plugins.mak @@ -101,10 +101,6 @@ INSPECT_ENVIRONMENT=\ PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \ $(INSPECT_EXTRA_ENVIRONMENT) -# update the element and plugin XML descriptions; store in inspect/ -inspect: - @-mkdir -p $(INSPECT_DIR) - #### scan gobjects; done by documentation maintainer #### scanobj-update: -rm scanobj-build.stamp @@ -113,7 +109,7 @@ scanobj-update: # TODO: finish elite script that updates the output files of this step # instead of rewriting them, so that multiple maintainers can generate # a collective set of args and signals -scanobj-build.stamp: $(SCANOBJ_DEPS) $(basefiles) inspect +scanobj-build.stamp: $(SCANOBJ_DEPS) $(basefiles) @echo " DOC Introspecting gobjects" @if test x"$(srcdir)" != x. ; then \ for f in $(SCANOBJ_FILES) $(SCAN_FILES); \ @@ -121,6 +117,7 @@ scanobj-build.stamp: $(SCANOBJ_DEPS) $(basefiles) inspect if test -e $(srcdir)/$$f; then cp -u $(srcdir)/$$f . ; fi; \ done; \ fi; \ + mkdir -p $(INSPECT_DIR); \ scanobj_options=""; \ if test "x$(V)" = "x1"; then \ scanobj_options="--verbose"; \