summaryrefslogtreecommitdiffstats
path: root/doc/SystemTap_Tapset_Reference/Makefile.am
diff options
context:
space:
mode:
authorMark Wielaard <mjw@redhat.com>2009-05-08 10:30:41 +0200
committerMark Wielaard <mjw@redhat.com>2009-05-08 10:30:41 +0200
commit532a25e60429f12cb92ef1056f1454815d135322 (patch)
tree153f817e02dfe3ca10691dedbbb6f0fd7a6dfe0d /doc/SystemTap_Tapset_Reference/Makefile.am
parent7b32c0d6ab200d270a94b1db5714e3a0507f9b20 (diff)
downloadsystemtap-steved-532a25e60429f12cb92ef1056f1454815d135322.tar.gz
systemtap-steved-532a25e60429f12cb92ef1056f1454815d135322.tar.xz
systemtap-steved-532a25e60429f12cb92ef1056f1454815d135322.zip
Search for only under $(SRCDIR)/tapsets for tapsets.xml and cleanup.
* doc/SystemTap_Tapset_Reference/Makefile.am (tapsets.xml): Only search under $(SRCDIR)/tapsets for .stp files. Cleanup tapsets.xml.new. * doc/SystemTap_Tapset_Reference/Makefile.in: Regenerated.
Diffstat (limited to 'doc/SystemTap_Tapset_Reference/Makefile.am')
-rw-r--r--doc/SystemTap_Tapset_Reference/Makefile.am3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/SystemTap_Tapset_Reference/Makefile.am b/doc/SystemTap_Tapset_Reference/Makefile.am
index a191461a..30c4ffef 100644
--- a/doc/SystemTap_Tapset_Reference/Makefile.am
+++ b/doc/SystemTap_Tapset_Reference/Makefile.am
@@ -24,10 +24,11 @@ endif
if BUILD_REFDOCS
all: $(PDFDOCS) stamp-htmldocs stamp-mandocs
-tapsets.xml: docproc $(shell find $(SRCTREE) -name '*.stp')
+tapsets.xml: docproc $(shell find $(SRCTREE)/tapset -name '*.stp')
SRCTREE=$(SRCTREE) $(DOCPROC) doc $(abs_srcdir)/tapsets.tmpl > tapsets.xml.new
if cmp tapsets.xml.new tapsets.xml >/dev/null ; then \
echo tapsets.xml unchanged; \
+ rm tapsets.xml.new; \
else \
mv tapsets.xml.new tapsets.xml; \
fi