diff options
author | roland <roland> | 2005-08-31 03:19:32 +0000 |
---|---|---|
committer | roland <roland> | 2005-08-31 03:19:32 +0000 |
commit | 0ac318baf18c2e24818f4f711ffe9328daa83e24 (patch) | |
tree | c828a03431166466a39668623a1259b02e3c0b51 | |
parent | 92e9d16c5e508fcb86e1ed814a0d871e56374bb8 (diff) | |
download | systemtap-steved-0ac318baf18c2e24818f4f711ffe9328daa83e24.tar.gz systemtap-steved-0ac318baf18c2e24818f4f711ffe9328daa83e24.tar.xz systemtap-steved-0ac318baf18c2e24818f4f711ffe9328daa83e24.zip |
2005-08-30 Roland McGrath <roland@redhat.com>
* Makefile.am (install-data-local): Use mkdir -p, not -mkdir.
* Makefile.in: Regenerated.
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | Makefile.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 660aae40..e31765c8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -55,7 +55,7 @@ install-data-local: tar -f - -c --exclude=CVS --exclude='*~' --exclude='.#*' \ -C $(srcdir)/runtime relayfs \ | (cd $(DESTDIR)$(pkgdatadir)/runtime && tar xpf -) - -mkdir $(DESTDIR)$(pkgdatadir)/tapset + mkdir -p $(DESTDIR)$(pkgdatadir)/tapset (cd $(srcdir)/tapset ; find . -name '*.stp' | cpio -pdmv $(DESTDIR)$(pkgdatadir)/tapset) p=$(srcdir)/testsuite/parse diff --git a/Makefile.in b/Makefile.in index cab17cba..d1d0e141 100644 --- a/Makefile.in +++ b/Makefile.in @@ -975,7 +975,7 @@ install-data-local: tar -f - -c --exclude=CVS --exclude='*~' --exclude='.#*' \ -C $(srcdir)/runtime relayfs \ | (cd $(DESTDIR)$(pkgdatadir)/runtime && tar xpf -) - -mkdir $(DESTDIR)$(pkgdatadir)/tapset + mkdir -p $(DESTDIR)$(pkgdatadir)/tapset (cd $(srcdir)/tapset ; find . -name '*.stp' | cpio -pdmv $(DESTDIR)$(pkgdatadir)/tapset) gcov: |