diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-11-26 01:09:10 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-11-26 01:09:10 +0000 |
commit | b544f41cef7692b6d4672b9784637051131d03ad (patch) | |
tree | 5c83237ad22a18a058467cac89199818b0a6e9a4 | |
parent | 02a0d81ee235f6a99b8de27763f3e742f67c3e2b (diff) | |
download | prosody-b544f41cef7692b6d4672b9784637051131d03ad.tar.gz prosody-b544f41cef7692b6d4672b9784637051131d03ad.zip |
Makefile: Fix to install new util/sasl directory
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -26,7 +26,10 @@ install: prosody.install prosodyctl.install prosody.cfg.lua.install util/encodin install -m755 ./prosodyctl.install $(BIN)/prosodyctl install -m644 core/* $(SOURCE)/core install -m644 net/* $(SOURCE)/net - install -m644 util/* $(SOURCE)/util + 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 fallbacks/* $(SOURCE)/fallbacks install -m644 plugins/*.lua $(MODULES) install -d $(MODULES)/muc |