Skip to content
Snippets Groups Projects
Commit 8c85fb2b authored by sof's avatar sof
Browse files

[project @ 1998-02-09 09:09:04 by sof]

Do UNC->DOS translation of TOP_PWD
parent 2701c66e
No related branches found
No related tags found
No related merge requests found
......@@ -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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment