diff options
author | roland <roland> | 2005-08-25 20:14:38 +0000 |
---|---|---|
committer | roland <roland> | 2005-08-25 20:14:38 +0000 |
commit | 9de096aaaa2333cfb483a162fe6af7a075fe5f83 (patch) | |
tree | d2231d8b385530473db1db5aaa2109f33f77451c | |
parent | fdfbe4f7ba1c0ad6740f1240c06c72d502e8bd26 (diff) | |
download | systemtap-steved-9de096aaaa2333cfb483a162fe6af7a075fe5f83.tar.gz systemtap-steved-9de096aaaa2333cfb483a162fe6af7a075fe5f83.tar.xz systemtap-steved-9de096aaaa2333cfb483a162fe6af7a075fe5f83.zip |
2005-08-25 Roland McGrath <roland@redhat.com>
* Makefile.am (EXTRA_DIST): Remove directory from wildcard file names.
-rw-r--r-- | Makefile.am | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 5526c7f7..465c3629 100644 --- a/Makefile.am +++ b/Makefile.am @@ -30,8 +30,8 @@ loc2c_test_LDADD = @stap_LIBS@ # Get extra libs as needed LDADD = -EXTRA_DIST = testsuite runtest.sh $(wildcard $(srcdir)/*.h) systemtap.spec \ - runtime tapset +EXTRA_DIST = testsuite runtest.sh $(notdir $(wildcard $(srcdir)/*.h)) \ + 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 @@ -94,4 +94,3 @@ uninstall-local: rm -rf $(DESTDIR)$(pkgdatadir) rm -rf $(DESTDIR)$(libexecdir)/$(PACKAGE) -rm -rf $(DESTDIR)$(localstatedir)/cache/$(PACKAGE) - |