From 3e904ae274605bd83d21033dd0cb3dfc4afc55fc Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Wed, 31 Aug 2011 11:56:40 +0200 Subject: [PATCH] Mark installed shared library as executable. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c8d34295..6c5cfcfc 100644 --- a/Makefile +++ b/Makefile @@ -104,7 +104,7 @@ install: $(INSTALL_DEP) cd src && test -f $(FILE_A) && $(INSTALL_F) $(FILE_A) $(INSTALL_STATIC) || : $(RM) $(INSTALL_DYN) $(INSTALL_SHORT1) $(INSTALL_SHORT2) cd src && test -f $(FILE_SO) && \ - $(INSTALL_F) $(FILE_SO) $(INSTALL_DYN) && \ + $(INSTALL_X) $(FILE_SO) $(INSTALL_DYN) && \ $(LDCONFIG) $(INSTALL_LIB) && \ $(SYMLINK) $(INSTALL_SONAME) $(INSTALL_SHORT1) && \ $(SYMLINK) $(INSTALL_SONAME) $(INSTALL_SHORT2) || : -- 2.11.4.GIT