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 | 3fd7b097c1a4272388f334abd36fdc05612dc939 (patch) | |
tree | d79e0182f75a09b6fa6a574c8b1aa3869618f73d /Makefile | |
parent | 433578afe3864064b1200a84b7ad6243074c6327 (diff) | |
download | prosody-3fd7b097c1a4272388f334abd36fdc05612dc939.tar.gz prosody-3fd7b097c1a4272388f334abd36fdc05612dc939.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)
Diffstat (limited to 'Makefile')
-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)';|; \ |