Merge branch 'release-2.140.136'
[feisty_meow.git] / scripts / clam / cpp / ms_root_dir.sh
diff --git a/scripts/clam/cpp/ms_root_dir.sh b/scripts/clam/cpp/ms_root_dir.sh
deleted file mode 100644 (file)
index 6f7d21e..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-# spits out the root directory of visual studio, calculated from the common
-# tools directory that always seems to be reliably set.
-
-# code snagged from vis_stu_vars...
-if [ -z "$VSxTOOLS" ]; then
-  export VSxTOOLS="$VS90COMNTOOLS"
-  if [ -z "$VSxTOOLS" ]; then
-    export VSxTOOLS="$VS80COMNTOOLS"
-  fi
-fi
-if [ -z "$VSxTOOLS" ]; then
-  #echo Failure to locate visual studio tools.
-  # don't want to echo anything; need to be able to check that this provided nothing.
-  exit 33
-fi
-
-cygpath -w -s "$VSxTOOLS" | sed -e 's/\\/\//g' | sed -e 's/^\(.*\)\/[^\/]*\/[^\/]*[\/]$/\1/'
-