diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-04-25 03:56:26 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-04-25 03:56:26 +0100 |
commit | 59edec552fdb0878fffbe63322c806808753d29e (patch) | |
tree | 898035796646a65c42a581483e48b6c3477d13f8 /Makefile | |
parent | abcb8d02e513d01c2ec1039cd1a623e3e23bac80 (diff) | |
download | prosody-59edec552fdb0878fffbe63322c806808753d29e.tar.gz prosody-59edec552fdb0878fffbe63322c806808753d29e.zip |
Makefile: Fix for net/http
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -27,7 +27,9 @@ install: prosody.install prosodyctl.install prosody.cfg.lua.install util/encodin install -m755 ./prosody.install $(BIN)/prosody install -m755 ./prosodyctl.install $(BIN)/prosodyctl install -m644 core/* $(SOURCE)/core - install -m644 net/* $(SOURCE)/net + install -m644 net/*.lua $(SOURCE)/net + install -d $(SOURCE)/net/http + install -m644 net/http/*.lua $(SOURCE)/net/http install -m644 util/*.lua $(SOURCE)/util install -m644 util/*.so $(SOURCE)/util install -d $(SOURCE)/util/sasl |