From 8c08b1a318252bfe4f66762dbef40712a14bb337 Mon Sep 17 00:00:00 2001 From: sof Date: Thu, 8 Nov 2001 18:51:03 +0000 Subject: [PATCH] [project @ 2001-11-08 18:51:03 by sof] hardtop_plat: escape those backslashes (exponentially so). --- configure.in | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) 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} -- 1.7.10.4