[project @ 2001-11-27 07:49:15 by sof]
authorsof <unknown>
Tue, 27 Nov 2001 07:49:15 +0000 (07:49 +0000)
committersof <unknown>
Tue, 27 Nov 2001 07:49:15 +0000 (07:49 +0000)
hardtop: newer versions of bash (and ash) have 'pwd' return paths
of the following form: /cygdrive/<drive>/<rest>

Transform these into <drive>:/<rest>, as that format is easier to
work with under mingw.

configure.in

index 6aadb65..d7f637d 100644 (file)
@@ -44,8 +44,7 @@ hardtop=`echo $hardtop | sed 's|^/tmp_mnt.*\(/local/.*\)$|\1|' | sed 's|^/tmp_mn
 
 echo ''
 echo "*** The top of your build tree is: $hardtop"
-AC_SUBST(hardtop)
-
+# subst of hardtop is done below after we've computed hardtop_plat.
 
 dnl--------------------------------------------------------------------
 dnl * Choose host(/target/build) platform
@@ -342,12 +341,15 @@ AC_SUBST(exeext)
 # (but with b-slashes being escaped).
 case $HostPlatform in
   i386-unknown-mingw32 | i386-unknown-cygwin32)
+       # get rid off /cygdrive/ prefix
+       hardtop=`echo ${hardtop} | sed -e 's%/cygdrive/\(.\)/%\1:/%g' `
        hardtop_plat=`cygpath -w ${hardtop} | sed -e 's@\\\\@\\\\\\\\@g' `
        ;;
   *)
        hardtop_plat=${hardtop}
        ;;
 esac
+AC_SUBST(hardtop)
 AC_SUBST(hardtop_plat)
 
 dnl --------------------------------------------------------------