diff options
author | Kim Alvefur <zash@zash.se> | 2015-10-14 20:55:26 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2015-10-14 20:55:26 +0200 |
commit | b5541c402f33ec62d405594d306dba4d53363351 (patch) | |
tree | 4b2d4f63927dd5f827ce2a0ed4f4125a9229db46 /Makefile | |
parent | 0dfbace5560dc05a5ddbdb89819efdc9ae9ae0e3 (diff) | |
download | prosody-b5541c402f33ec62d405594d306dba4d53363351.tar.gz prosody-b5541c402f33ec62d405594d306dba4d53363351.zip |
Makefile: Use more specific globbing for core directory in Makefile (Thanks Robert Scheck) (fixes #532)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |