diff options
author | Ian Lynagh <igloo@earth.li> | 2009-12-16 20:43:54 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-12-16 20:43:54 +0000 |
commit | fb783aeaa5bc1cc60e6bb551c1cd01a097b84fad (patch) | |
tree | 9f2416869f1d49cf5b70760352e39588175fd716 /mk | |
parent | 8e63e8eae43292fbeb219740eadd798bde76760c (diff) | |
download | haskell-fb783aeaa5bc1cc60e6bb551c1cd01a097b84fad.tar.gz |
Fix build with Solaris sed
Rather than trying to handle tabs with sed portably, we just use tr to
remove them before we start.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/config.mk.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index f2d077678c..01bbc75b1d 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -598,6 +598,7 @@ PIC = pic PREPROCESSCMD = $(CC) -E RANLIB = @RANLIB@ SED = @SedCmd@ +TR = tr SHELL = /bin/sh HaveDtrace = @HaveDtrace@ |