diff options
author | Matthew Wild <mwild1@gmail.com> | 2014-03-30 09:16:27 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2014-03-30 09:16:27 +0100 |
commit | 2e1f1960ae960de1ad9230d2ff6ad1de7505dccb (patch) | |
tree | d79e0182f75a09b6fa6a574c8b1aa3869618f73d | |
parent | be4a3099fbc0063d16899eefe9aa491e876464cf (diff) | |
download | prosody-2e1f1960ae960de1ad9230d2ff6ad1de7505dccb.tar.gz prosody-2e1f1960ae960de1ad9230d2ff6ad1de7505dccb.zip |
Makefile: Change sed regex to be compatible with FreeBSD's odd sed, and change / to | to allow paths to be used in RUNWITH (thanks Ben)
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -55,7 +55,7 @@ util/%.so: $(MAKE) install -C util-src %.install: % - sed "1s/\blua\b/$(RUNWITH)/; \ + sed "1s| lua$$| $(RUNWITH)|; \ s|^CFG_SOURCEDIR=.*;$$|CFG_SOURCEDIR='$(INSTALLEDSOURCE)';|; \ s|^CFG_CONFIGDIR=.*;$$|CFG_CONFIGDIR='$(INSTALLEDCONFIG)';|; \ s|^CFG_DATADIR=.*;$$|CFG_DATADIR='$(INSTALLEDDATA)';|; \ |