]> sourceware.org Git - systemtap.git/commitdiff
2007-04-18 Frank Ch. Eigler <fche@elastic.org>
authorfche <fche>
Wed, 18 Apr 2007 19:04:20 +0000 (19:04 +0000)
committerfche <fche>
Wed, 18 Apr 2007 19:04:20 +0000 (19:04 +0000)
* Makefile.am (install-elfutils): Use $INSTALL_PROGRAM to
copy elfutils shared libraries, as suggested by Perry Cheng
<perryche@us.ibm.com>.

ChangeLog
Makefile.am
Makefile.in

index 10e8d70a9ea56587087de63e231da5b769a5b5f6..f0f11e5805b169c25850b6bfca4c01b7619467e8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-04-18  Frank Ch. Eigler  <fche@elastic.org>
+
+       * Makefile.am (install-elfutils): Use $INSTALL_PROGRAM to
+       copy elfutils shared libraries, as suggested by Perry Cheng
+       <perryche@us.ibm.com>.
+
 2007-04-18  Frank Ch. Eigler  <fche@elastic.org>
 
        * parse.cxx (scan_pp): Correct warnings from if/if/else nesting.
index 00503ec7a79b7259f2417c76479c93d3532d9c6e..6006640261d77a9a7f2fa21a7222e6e9e795cb51 100644 (file)
@@ -45,8 +45,9 @@ lib-elfutils/libdw.so: stamp-elfutils ;
 .PHONY: install-elfutils
 install-elfutils:
        mkdir -p $(pkglibdir)
-       cp -df lib-elfutils/*.so* lib-elfutils/${PACKAGE_NAME}/*.so* \
-          $(pkglibdir)
+       for file in lib-elfutils/*.so* lib-elfutils/${PACKAGE_NAME}/*.so*; do \
+          $(INSTALL_PROGRAM) $$file $(pkglibdir); \
+       done
 install-exec-local: install-elfutils
 endif
 
index 9016f7cf077510f64eb195238911b6531e8d9189..c84f45922110c07ab807286e9fa9ddfcc8b4c24f 100644 (file)
@@ -1325,8 +1325,9 @@ uninstall-man: uninstall-man1 uninstall-man5 uninstall-man8
 @BUILD_ELFUTILS_TRUE@.PHONY: install-elfutils
 @BUILD_ELFUTILS_TRUE@install-elfutils:
 @BUILD_ELFUTILS_TRUE@  mkdir -p $(pkglibdir)
-@BUILD_ELFUTILS_TRUE@  cp -df lib-elfutils/*.so* lib-elfutils/${PACKAGE_NAME}/*.so* \
-@BUILD_ELFUTILS_TRUE@     $(pkglibdir)
+@BUILD_ELFUTILS_TRUE@  for file in lib-elfutils/*.so* lib-elfutils/${PACKAGE_NAME}/*.so*; do \
+@BUILD_ELFUTILS_TRUE@     $(INSTALL_PROGRAM) $$file $(pkglibdir); \
+@BUILD_ELFUTILS_TRUE@  done
 @BUILD_ELFUTILS_TRUE@install-exec-local: install-elfutils
 
 # Copy some of the testsuite sample scripts to the distdir
This page took 0.041644 seconds and 5 git commands to generate.