diff options
author | Michel Le Bihan <michel@lebihan.pl> | 2018-02-28 18:12:20 +0100 |
---|---|---|
committer | Michel Le Bihan <michel@lebihan.pl> | 2018-02-28 18:12:20 +0100 |
commit | 8e377a8d5586e64f4c75e0b40e7b84de6e2a7972 (patch) | |
tree | b8328983020c388ae225f9a0d72cff1e814e1a2b | |
parent | eabaac8268c2376225553c37a57de6a281379560 (diff) | |
download | prosody-8e377a8d5586e64f4c75e0b40e7b84de6e2a7972.tar.gz prosody-8e377a8d5586e64f4c75e0b40e7b84de6e2a7972.zip |
Makefile: Also package /net/resolvers
Fixes #1094
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -37,8 +37,9 @@ install: prosody.install prosodyctl.install prosody.cfg.lua.install util/encodin $(INSTALL_EXEC) ./prosodyctl.install $(BIN)/prosodyctl $(INSTALL_DATA) core/*.lua $(SOURCE)/core $(INSTALL_DATA) net/*.lua $(SOURCE)/net - $(MKDIR) $(SOURCE)/net/http $(SOURCE)/net/websocket + $(MKDIR) $(SOURCE)/net/http $(SOURCE)/net/resolvers $(SOURCE)/net/websocket $(INSTALL_DATA) net/http/*.lua $(SOURCE)/net/http + $(INSTALL_DATA) net/resolvers/*.lua $(SOURCE)/net/resolvers $(INSTALL_DATA) net/websocket/*.lua $(SOURCE)/net/websocket $(INSTALL_DATA) util/*.lua $(SOURCE)/util $(INSTALL_DATA) util/*.so $(SOURCE)/util |