From: sof Date: Mon, 9 Feb 1998 09:09:04 +0000 (+0000) Subject: [project @ 1998-02-09 09:09:04 by sof] X-Git-Tag: Approx_2487_patches~981 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=8c85fb2b78f749d000eadb358c2cccee2e052f33;p=ghc-hetmet.git [project @ 1998-02-09 09:09:04 by sof] Do UNC->DOS translation of TOP_PWD --- diff --git a/configure.in b/configure.in index 7560289..078d180 100644 --- a/configure.in +++ b/configure.in @@ -28,10 +28,11 @@ if test x"$srcdir" != 'x.' ; then fi # -# Remove some automounter nonsense (Glasgow specific gruff) +# Remove common automounter nonsense + convert from UNC to DOS style paths +# (cygwin32-beta18 for UNC isn't quite there yet.) # hardtop=`pwd` -hardtop=`echo $hardtop | sed 's|^/tmp_mnt.*\(/local/.*\)$|\1|' | sed 's|^/tmp_mnt/|/|' | sed 's|^/grasp_tmp|/local/grasp_tmp|'` +hardtop=`echo $hardtop | sed 's|^/tmp_mnt.*\(/local/.*\)$|\1|' | sed 's|^/tmp_mnt/|/|' | sed 's|^/grasp_tmp|/local/grasp_tmp|' | sed 's|^//\(.\)/|\1:/|' ` echo '' echo "*** The top of your build tree is: $hardtop"