From: sof Date: Thu, 8 Nov 2001 18:51:03 +0000 (+0000) Subject: [project @ 2001-11-08 18:51:03 by sof] X-Git-Tag: Approximately_9120_patches~595 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=8c08b1a318252bfe4f66762dbef40712a14bb337;p=ghc-hetmet.git [project @ 2001-11-08 18:51:03 by sof] hardtop_plat: escape those backslashes (exponentially so). --- diff --git a/configure.in b/configure.in index 0eda0d3..6aadb65 100644 --- a/configure.in +++ b/configure.in @@ -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}