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 | 34eff6d74ca04ed10cb8c10d368d36c30d85bf16 (patch) | |
tree | 898035796646a65c42a581483e48b6c3477d13f8 | |
parent | 6cfc7eb6bb7df52eb28ac4d99914631d89a67510 (diff) | |
download | prosody-34eff6d74ca04ed10cb8c10d368d36c30d85bf16.tar.gz prosody-34eff6d74ca04ed10cb8c10d368d36c30d85bf16.zip |
Makefile: Fix for net/http
-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 |