[project @ 2001-11-08 17:39:14 by sof]
authorsof <unknown>
Thu, 8 Nov 2001 17:39:14 +0000 (17:39 +0000)
committersof <unknown>
Thu, 8 Nov 2001 17:39:14 +0000 (17:39 +0000)
Prev. commit upset world order - revert back to printing out
build tree loc. first.

configure.in

index 5483184..0eda0d3 100644 (file)
@@ -35,6 +35,18 @@ if test x"$srcdir" != 'x.' ; then
     exit 1
 fi
 
+#
+# Remove common automounter nonsense + convert from UNC to DOS style paths
+# (UNC awareness isn't quite there yet for cygwin32-beta18 and consituent tools.)
+#
+hardtop=`pwd`
+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"
+AC_SUBST(hardtop)
+
+
 dnl--------------------------------------------------------------------
 dnl * Choose host(/target/build) platform
 dnl--------------------------------------------------------------------
@@ -326,14 +338,8 @@ dnl AC_SUBST(TargetVendor_CPP)
 AC_SUBST(exeext)
 
 #
-# Remove common automounter nonsense + convert from UNC to DOS style paths
-# (UNC awareness isn't quite there yet for cygwin32-beta18 and consituent tools.)
+# The native format for 'hardtop' (i.e., right kind of slashes on a Win32 box).
 #
-hardtop=`pwd`
-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"
 case $HostPlatform in
   i386-unknown-mingw32)
        hardtop_plat=`cygpath -w ${hardtop}`
@@ -345,8 +351,6 @@ case $HostPlatform in
        hardtop_plat=${hardtop}
        ;;
 esac
-AC_SUBST(hardtop)
-# The native format (i.e., right kind of slashes on a Win32 box).
 AC_SUBST(hardtop_plat)
 
 dnl --------------------------------------------------------------