Skip to content

Commit 011efca

Browse files
authored
Fixed .so lack of +x permissions (#359)
1 parent 1140d5a commit 011efca

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

opt/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,10 +145,12 @@ cmake-build $(TARGET): $(MK_MAKEFILES)
145145
$(SHOW)$(MAKE) -C $(BINDIR)
146146
$(SHOW)mkdir -p $(INSTALL_DIR)
147147
$(SHOW)$(MAKE) -C $(BINDIR) install
148+
$(SHOW)find $(INSTALL_DIR) -name "*.so" -exec chmod +x {} \;
148149

149150
install $(INSTALLED_TARGET): $(TARGET)
150151
$(SHOW)mkdir -p $(INSTALL_DIR)
151152
$(SHOW)$(MAKE) -C $(BINDIR) install
153+
$(SHOW)find $(INSTALL_DIR) -name "*.so" -exec chmod +x {} \;
152154

153155
clean:
154156
ifeq ($(ALL),1)

0 commit comments

Comments
 (0)