aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2015-10-14 20:55:26 +0200
committerKim Alvefur <zash@zash.se>2015-10-14 20:55:26 +0200
commit7b773fd7d8c3f0af2fe174a757539f17a987dd46 (patch)
tree4b2d4f63927dd5f827ce2a0ed4f4125a9229db46
parentb46b9dc13faac301799a394536a217034cb1aad0 (diff)
downloadprosody-7b773fd7d8c3f0af2fe174a757539f17a987dd46.tar.gz
prosody-7b773fd7d8c3f0af2fe174a757539f17a987dd46.zip
Makefile: Use more specific globbing for core directory in Makefile (Thanks Robert Scheck) (fixes #532)
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0b704e5a..46a8f49d 100644
--- a/Makefile
+++ b/Makefile
@@ -29,7 +29,7 @@ install: prosody.install prosodyctl.install prosody.cfg.lua.install util/encodin
install -d $(SOURCE)/core $(SOURCE)/net $(SOURCE)/util
install -m755 ./prosody.install $(BIN)/prosody
install -m755 ./prosodyctl.install $(BIN)/prosodyctl
- install -m644 core/* $(SOURCE)/core
+ install -m644 core/*.lua $(SOURCE)/core
install -m644 net/*.lua $(SOURCE)/net
install -d $(SOURCE)/net/http
install -m644 net/http/*.lua $(SOURCE)/net/http