Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
jberryman
GHC
Commits
8c08b1a3
Commit
8c08b1a3
authored
Nov 08, 2001
by
sof
Browse files
[project @ 2001-11-08 18:51:03 by sof]
hardtop_plat: escape those backslashes (exponentially so).
parent
f8bd123f
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.in
View file @
8c08b1a3
...
...
@@ -339,13 +339,10 @@ AC_SUBST(exeext)
#
# The native format for 'hardtop' (i.e., right kind of slashes on a Win32 box).
#
#
(but with b-slashes being escaped).
case $HostPlatform in
i386-unknown-mingw32)
hardtop_plat=`cygpath -w ${hardtop}`
;;
i386-unknown-cygwin32)
hardtop_plat=`cygpath -w ${hardtop}`
i386-unknown-mingw32 | i386-unknown-cygwin32)
hardtop_plat=`cygpath -w ${hardtop} | sed -e 's@\\\\@\\\\\\\\@g' `
;;
*)
hardtop_plat=${hardtop}
...
...
Write
Preview
Supports
Markdown
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