From: Tom Hughes Date: Thu, 10 Nov 2005 11:11:39 +0000 (+0000) Subject: Use $(INSTALL_DATA) to install libcoregrind.a and libvex.a as they X-Git-Tag: svn/VALGRIND_3_1_0~166 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ae428b26c5c9ffbda0edac161c42c01cbf7d408;p=thirdparty%2Fvalgrind.git Use $(INSTALL_DATA) to install libcoregrind.a and libvex.a as they don't need to have execute permission. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5066 --- diff --git a/Makefile.install.am b/Makefile.install.am index 216253b84b..38d7fff789 100644 --- a/Makefile.install.am +++ b/Makefile.install.am @@ -20,7 +20,7 @@ install-exec-local: if expr match $$f libcoregrind_ > /dev/null ; then \ pU=`echo $$f | sed -e 's/libcoregrind_//g' -e 's/\.a//g'` ; \ pD=`echo $$pU | sed -e 's/_/-/g'` ; \ - $(INSTALL_PROGRAM) $$f $(DESTDIR)$(valdir)/$$pD/libcoregrind.a ; \ - $(INSTALL_PROGRAM) @VEX_DIR@/libvex_$$pU.a $(DESTDIR)$(valdir)/$$pD/libvex.a ; \ + $(INSTALL_DATA) $$f $(DESTDIR)$(valdir)/$$pD/libcoregrind.a ; \ + $(INSTALL_DATA) @VEX_DIR@/libvex_$$pU.a $(DESTDIR)$(valdir)/$$pD/libvex.a ; \ fi ; \ done