Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Alex D
GHC
Commits
7d556a43
Commit
7d556a43
authored
Feb 10, 2012
by
Ian Lynagh
Browse files
Filter colons out of ghc-config-mk
Otherwise the colon confuses make on Windows
parent
ec735cae
Changes
1
Hide whitespace changes
Inline
Side-by-side
testsuite/mk/boilerplate.mk
View file @
7d556a43
...
...
@@ -143,8 +143,10 @@ $(TOP)/mk/ghc-config : $(TOP)/mk/ghc-config.hs
empty
=
space
=
$(empty)
$(empty)
ghc-config-mk
=
$(TOP)
/mk/ghcconfig
$(
subst
$(space)
,_,
$(
subst
/,_,
$(
subst
\,
_,
$(TEST_HC)
)))
.mk
ghc-config-mk
=
$(TOP)
/mk/ghcconfig
$(
subst
$(space)
,_,
$(
subst
:,_,
$(
subst
/,_,
$(
subst
\,
_,
$(TEST_HC)
)))
)
.mk
$(info
TOP
is
$(TOP))
$(info
ghc-config-mk
is
$(ghc-config-mk))
$(ghc-config-mk)
:
$(TOP)/mk/ghc-config
$(TOP)
/mk/ghc-config
"
$(TEST_HC)
"
>
"
$@
"
||
$(RM)
"
$@
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment