common/autoconf/toolchain.m4
changeset 39928 8448cfeb0f1d
parent 39115 1f71a5d2b20b
child 39956 f4d6bb80bc87
--- a/common/autoconf/toolchain.m4	Thu Aug 04 10:00:54 2016 +0200
+++ b/common/autoconf/toolchain.m4	Thu Aug 04 10:03:57 2016 +0200
@@ -312,8 +312,12 @@
 # Restore path, etc
 AC_DEFUN_ONCE([TOOLCHAIN_POST_DETECTION],
 [
-  # Restore old path.
-  PATH="$OLD_PATH"
+  # Restore old path, except for the microsoft toolchain, which requires VS_PATH
+  # to remain in place. Otherwise the compiler will not work in some siutations
+  # in later configure checks.
+  if test "x$TOOLCHAIN_TYPE" != "xmicrosoft"; then
+    PATH="$OLD_PATH"
+  fi
 
   # Restore the flags to the user specified values.
   # This is necessary since AC_PROG_CC defaults CFLAGS to "-g -O2"