[project @ 2001-12-06 13:05:03 by sewardj]
[ghc-hetmet.git] / configure.in
index 6aadb65..44451a7 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:/%' `
        hardtop_plat=`cygpath -w ${hardtop} | sed -e 's@\\\\@\\\\\\\\@g' `
        ;;
   *)
        hardtop_plat=${hardtop}
        ;;
 esac
+AC_SUBST(hardtop)
 AC_SUBST(hardtop_plat)
 
 dnl --------------------------------------------------------------