X-Git-Url: https://feistymeow.org/gitweb/?p=feisty_meow.git;a=blobdiff_plain;f=scripts%2Fclam%2Fcpp%2Fms_root_dir.sh;fp=scripts%2Fclam%2Fcpp%2Fms_root_dir.sh;h=0000000000000000000000000000000000000000;hp=6f7d21e3b7fdf6ebe89d8ec42496652642e2790a;hb=de0da7f2f7958d4ba652ff2ef5c79991700141ac;hpb=a4c99c6006b3aa20b5f65f02c2d30db7e790083a diff --git a/scripts/clam/cpp/ms_root_dir.sh b/scripts/clam/cpp/ms_root_dir.sh deleted file mode 100644 index 6f7d21e3..00000000 --- a/scripts/clam/cpp/ms_root_dir.sh +++ /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/' -