diff options
author | hunt <hunt> | 2005-07-28 15:56:36 +0000 |
---|---|---|
committer | hunt <hunt> | 2005-07-28 15:56:36 +0000 |
commit | bc7a7312e332cc37c9ee22964fc586e3aa1ff903 (patch) | |
tree | 50a26ae39f10ce99f8036f519d79cdef967d38dd | |
parent | 8a43522c150e94623ee90857c62d3fb7f5b58521 (diff) | |
download | systemtap-steved-bc7a7312e332cc37c9ee22964fc586e3aa1ff903.tar.gz systemtap-steved-bc7a7312e332cc37c9ee22964fc586e3aa1ff903.tar.xz systemtap-steved-bc7a7312e332cc37c9ee22964fc586e3aa1ff903.zip |
2005-07-28 Martin Hunt <hunt@redhat.com>
* Makefile.am (install-data-local): Add runtime/transport.
* Makefile.in: regenerated.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.am | 5 | ||||
-rw-r--r-- | Makefile.in | 5 |
3 files changed, 13 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2005-07-28 Martin Hunt <hunt@redhat.com> + + * Makefile.am (install-data-local): Add runtime/transport. + * Makefile.in: regenerated. + 2005-07-26 Graydon Hoare <graydon@redhat.com> * elaborate.cxx: Revert builtin-function code. diff --git a/Makefile.am b/Makefile.am index 210424e7..e3262f68 100644 --- a/Makefile.am +++ b/Makefile.am @@ -27,12 +27,15 @@ dist-hook: find $(distdir) -name '*.o' -o -name '*.ko' -o -name '*.cmd' -o -name '*.mod.c' -o -name '.??*' | xargs rm -rf install-data-local: - mkdir -p $(DESTDIR)$(pkgdatadir)/runtime + mkdir -p $(DESTDIR)$(pkgdatadir)/runtime/transport cp -rp $(srcdir)/runtime/*.[ch] $(srcdir)/runtime/Doxyfile \ $(DESTDIR)$(pkgdatadir)/runtime tar -f - -c --exclude=CVS --exclude='*~' --exclude='.#*' \ -C $(srcdir)/runtime probes \ | (cd $(DESTDIR)$(pkgdatadir)/runtime && tar xpf -) + tar -f - -c --exclude=CVS --exclude='*~' --exclude='.#*' \ + -C $(srcdir)/runtime transport \ + | (cd $(DESTDIR)$(pkgdatadir)/runtime && tar xpf -) p=$(srcdir)/testsuite/parse s=$(srcdir)/testsuite/sem diff --git a/Makefile.in b/Makefile.in index 66428825..37a79c78 100644 --- a/Makefile.in +++ b/Makefile.in @@ -753,12 +753,15 @@ dist-hook: find $(distdir) -name '*.o' -o -name '*.ko' -o -name '*.cmd' -o -name '*.mod.c' -o -name '.??*' | xargs rm -rf install-data-local: - mkdir -p $(DESTDIR)$(pkgdatadir)/runtime + mkdir -p $(DESTDIR)$(pkgdatadir)/runtime/transport cp -rp $(srcdir)/runtime/*.[ch] $(srcdir)/runtime/Doxyfile \ $(DESTDIR)$(pkgdatadir)/runtime tar -f - -c --exclude=CVS --exclude='*~' --exclude='.#*' \ -C $(srcdir)/runtime probes \ | (cd $(DESTDIR)$(pkgdatadir)/runtime && tar xpf -) + tar -f - -c --exclude=CVS --exclude='*~' --exclude='.#*' \ + -C $(srcdir)/runtime transport \ + | (cd $(DESTDIR)$(pkgdatadir)/runtime && tar xpf -) gcov: @$(MAKE) clean CXXFLAGS="-g -fprofile-arcs -ftest-coverage" all check |