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>
This commit is contained in:
Henrik Brautaset Aronsen 2013-04-23 21:24:01 +02:00 committed by Dirk Hohndel
parent 315c0b505c
commit 6a3ccaea35

View file

@ -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