aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaweł Chmielowski <pchmielowski@process-one.net>2017-10-02 11:51:15 +0200
committerPaweł Chmielowski <pchmielowski@process-one.net>2017-10-02 11:51:15 +0200
commit668d45cbc7216c31a6b476478c6a848374bedbc3 (patch)
treec4a6ab22483b111657ec236b8dc0f6d9d245547e
parentRemove find-outdated-deps script, we have better replacement for it (diff)
Install binaries with 755 permissions
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index da25bc72a..015963294 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -152,13 +152,13 @@ $(call TO_DEST,deps/epam/priv/bin/epam): $(LIBDIR)/%: deps/epam/priv/bin/epam $(
$(INSTALL) -m 750 $(O_USER) $< $@
$(call TO_DEST,deps/eimp/priv/bin/eimp): $(LIBDIR)/%: deps/eimp/priv/bin/eimp $(call TO_DEST,deps/eimp/priv/bin/)
- $(INSTALL) -m 750 $(O_USER) $< $@
+ $(INSTALL) -m 755 $(O_USER) $< $@
$(call TO_DEST,priv/sql/lite.sql): sql/lite.sql $(call TO_DEST,priv/sql)
$(INSTALL) -m 644 $< $@
$(call TO_DEST,priv/bin/captcha.sh): tools/captcha.sh $(call TO_DEST,priv/bin)
- $(INSTALL) -m 750 $(O_USER) $< $@
+ $(INSTALL) -m 755 $(O_USER) $< $@
copy-files-sub2: $(call TO_DEST,$(DEPS_FILES) $(MAIN_FILES) priv/bin/captcha.sh priv/sql/lite.sql)