diff options
author | Henrik Brautaset Aronsen <subsurface@henrik.synth.no> | 2013-04-23 21:24:01 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-04-23 12:31:15 -0700 |
commit | 6a3ccaea352abdbac464e1ceb73157f959cf3c36 (patch) | |
tree | d3dfb14d3881d32e072377c8de5001bd8c4f7618 /Configure.mk | |
parent | 315c0b505c94e0a4cc14948ff47180576e4786ed (diff) | |
download | subsurface-6a3ccaea352abdbac464e1ceb73157f959cf3c36.tar.gz |
Fix config.cache creation on a Mac
Mac uses BSD sed by default, which doesn't support \n substition
by default. Replacing sed with tr.
Signed-off-by: Henrik Brautaset Aronsen <subsurface@henrik.synth.no>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'Configure.mk')
-rw-r--r-- | Configure.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Configure.mk b/Configure.mk index 99292795a..66bb562e9 100644 --- a/Configure.mk +++ b/Configure.mk @@ -154,7 +154,7 @@ configure $(CONFIGURE): Configure.mk ZIPFLAGS = $(ZIPFLAGS) \\\ LIBSQLITE3 = $(LIBSQLITE3) \\\ SQLITE3FLAGS = $(SQLITE3FLAGS) \\\ - " | sed 's,\\,\n,g' > $(CONFIGFILE) + " | tr '\\' '\n' > $(CONFIGFILE) else configure $(CONFIGFILE): Configure.mk |