mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-01 05:33:23 +00:00
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:
parent
315c0b505c
commit
6a3ccaea35
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue