diff options
-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 |