aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-06-04 15:30:00 +0100
committerMatthew Wild <mwild1@gmail.com>2009-06-04 15:30:00 +0100
commite70d58ad08426aba21c8c7e39d2d6ca9ca58015d (patch)
treea0848050b6a5ea89da8757fa703032d7b334a99c /Makefile
parentaec90f68408ae3f8cd326733f4f29cccf27839c7 (diff)
downloadprosody-e70d58ad08426aba21c8c7e39d2d6ca9ca58015d.tar.gz
prosody-e70d58ad08426aba21c8c7e39d2d6ca9ca58015d.zip
Makefile: Specify permissions on installed executables [thanks mhavela]
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f030821c..f65e7f74 100644
--- a/Makefile
+++ b/Makefile
@@ -19,8 +19,8 @@ install: prosody.install prosodyctl.install prosody.cfg.lua.install util/encodin
install -d $(BIN) $(CONFIG) $(MODULES) $(SOURCE) $(DATA)
install -d $(CONFIG)/certs
install -d $(SOURCE)/core $(SOURCE)/net $(SOURCE)/util
- install ./prosody.install $(BIN)/prosody
- install ./prosodyctl.install $(BIN)/prosodyctl
+ install -m755 ./prosody.install $(BIN)/prosody
+ install -m755 ./prosodyctl.install $(BIN)/prosodyctl
install -m644 core/* $(SOURCE)/core
install -m644 net/* $(SOURCE)/net
install -m644 util/* $(SOURCE)/util