diff options
author | Kim Alvefur <zash@zash.se> | 2016-10-01 01:38:28 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-10-01 01:38:28 +0200 |
commit | 4813cf4bde61a5bb9256ebbee3bf874718d13045 (patch) | |
tree | 0c9893a76bed2908a1e305d4ba3cf459e29095e6 /Makefile | |
parent | 70ba6bf40f1ab1ae43a120c4281970afb699e275 (diff) | |
download | prosody-4813cf4bde61a5bb9256ebbee3bf874718d13045.tar.gz prosody-4813cf4bde61a5bb9256ebbee3bf874718d13045.zip |
Makefile: Use more specific globbing for util.sasl.* (like 5a60b4705bc3)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -37,7 +37,7 @@ install: prosody.install prosodyctl.install prosody.cfg.lua.install util/encodin install -m644 util/*.lua $(SOURCE)/util install -m644 util/*.so $(SOURCE)/util install -d $(SOURCE)/util/sasl - install -m644 util/sasl/* $(SOURCE)/util/sasl + install -m644 util/sasl/*.lua $(SOURCE)/util/sasl umask 0022 && cp -r plugins/* $(MODULES) install -m644 certs/* $(CONFIG)/certs install -m644 man/prosodyctl.man $(MAN)/man1/prosodyctl.1 |