summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMike Pall <mike>2011-08-31 11:56:40 +0200
committerMike Pall <mike>2011-08-31 11:56:40 +0200
commit3e904ae274605bd83d21033dd0cb3dfc4afc55fc (patch)
tree7e90c01fb7d63ddb53b87f215f63a174b4220134 /Makefile
parent32c1d4751a302dc7838659477fe8605e3c14eabb (diff)
downloadluajit2-3e904ae274605bd83d21033dd0cb3dfc4afc55fc.tar.gz
Mark installed shared library as executable.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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) || :