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 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/Makefile.install.am b/Makefile.install.am
index 216253b..38d7fff 100644
--- a/Makefile.install.am
+++ b/Makefile.install.am
@@ -20,7 +20,7 @@
 	  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