diff options
author | roland <roland> | 2005-08-25 21:53:46 +0000 |
---|---|---|
committer | roland <roland> | 2005-08-25 21:53:46 +0000 |
commit | 840e48ba4f872e707adc9c2b2f35d029c96ab9e7 (patch) | |
tree | 97e03ef2dfdaa8fd8e1c9a855b19dda430d4a167 | |
parent | 0cbdf6cd06551883b3bdf4f1419c2b082fe68fec (diff) | |
download | systemtap-steved-840e48ba4f872e707adc9c2b2f35d029c96ab9e7.tar.gz systemtap-steved-840e48ba4f872e707adc9c2b2f35d029c96ab9e7.tar.xz systemtap-steved-840e48ba4f872e707adc9c2b2f35d029c96ab9e7.zip |
2005-08-25 Roland McGrath <roland@redhat.com>
* Makefile.am (EXTRA_DIST): List .h files explicitly.
Automake really does not like wildcards.
* Makefile.in: Regenerated.
-rw-r--r-- | Makefile.am | 5 | ||||
-rw-r--r-- | Makefile.in | 7 |
2 files changed, 7 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am index 714f051a..ea26e4d6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -30,8 +30,9 @@ loc2c_test_LDADD = @stap_LIBS@ # Get extra libs as needed LDADD = -EXTRA_DIST = testsuite runtest.sh $(notdir $(wildcard $(srcdir)/*.h)) \ - systemtap.spec runtime tapset +EXTRA_DIST = buildrun.h elaborate.h loc2c.h \ + parse.h staptree.h tapsets.h translate.h \ + testsuite runtest.sh systemtap.spec runtime tapset dist-hook: find $(distdir) -name CVS -o -name '*~' -o -name '.#*' | xargs rm -rf find $(distdir) -name '*.o' -o -name '*.ko' -o -name '*.cmd' -o -name '*.mod.c' -o -name '.??*' | xargs rm -rf diff --git a/Makefile.in b/Makefile.in index 3e51f6d4..74741bbe 100644 --- a/Makefile.in +++ b/Makefile.in @@ -207,8 +207,9 @@ loc2c_test_LDADD = @stap_LIBS@ # Get extra libs as needed LDADD = -EXTRA_DIST = testsuite runtest.sh $(notdir $(wildcard $(srcdir)/*.h)) \ - systemtap.spec runtime tapset +EXTRA_DIST = buildrun.h elaborate.h loc2c.h \ + parse.h staptree.h tapsets.h translate.h \ + testsuite runtest.sh systemtap.spec runtime tapset p = $(srcdir)/testsuite/parse s = $(srcdir)/testsuite/sem @@ -664,7 +665,7 @@ check-TESTS: $(TESTS) distdir: $(DISTFILES) $(am__remove_distdir) mkdir $(distdir) - $(mkdir_p) $(distdir)/$(srcdir) $(distdir)/. + $(mkdir_p) $(distdir)/. @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ |