diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-02-20 15:51:05 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-02-20 15:51:05 +0000 |
commit | 3425d38067fa73d76fc12016f6714fcfe0f0c9ca (patch) | |
tree | b35e5dbb744258ab8af772ae6871b3451e6cd88a /tools/migration | |
parent | ff0710136d0c83566bd49e7ba2536502babafd15 (diff) | |
download | prosody-3425d38067fa73d76fc12016f6714fcfe0f0c9ca.tar.gz prosody-3425d38067fa73d76fc12016f6714fcfe0f0c9ca.zip |
configure, Makefile: Add --libdir option to ./configure, allowing you to override the $PREFIX/lib/ default. Fixes #470.
Diffstat (limited to 'tools/migration')
-rw-r--r-- | tools/migration/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/migration/Makefile b/tools/migration/Makefile index ae402bd2..713831d2 100644 --- a/tools/migration/Makefile +++ b/tools/migration/Makefile @@ -3,13 +3,13 @@ include ../../config.unix BIN = $(DESTDIR)$(PREFIX)/bin CONFIG = $(DESTDIR)$(SYSCONFDIR) -SOURCE = $(DESTDIR)$(PREFIX)/lib/prosody +SOURCE = $(DESTDIR)$(LIBDIR)/prosody DATA = $(DESTDIR)$(DATADIR) MAN = $(DESTDIR)$(PREFIX)/share/man -INSTALLEDSOURCE = $(PREFIX)/lib/prosody +INSTALLEDSOURCE = $(LIBDIR)/prosody INSTALLEDCONFIG = $(SYSCONFDIR) -INSTALLEDMODULES = $(PREFIX)/lib/prosody/modules +INSTALLEDMODULES = $(LIBDIR)/prosody/modules INSTALLEDDATA = $(DATADIR) SOURCE_FILES = migrator/*.lua |