2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 13:22:11 +00:00

Changed to use VS80COMNTOOLS to determine Visual Studio path - this avoids conficts with other Visual C++ versions, but in the long run, we really should look to the registry for this.

[SVN r25334]
This commit is contained in:
John Maddock
2004-09-22 10:22:23 +00:00
parent b18b2c6e0f
commit e706a77bdb

View File

@@ -5,9 +5,9 @@ set-as-singleton VC80_ROOT ;
if ! $(MSVCDir)
{
if $(VCINSTALLDIR)
if $(VS80COMNTOOLS)
{
VC80_ROOT ?= $(VCINSTALLDIR) ;
VC80_ROOT ?= $(VS80COMNTOOLS:J=" ")..\\..\\VC ;
VC_TOOL_PATH = "$(VC80_ROOT)"\\bin\\ ;
VC_SETUP = "CALL \"$(VC_TOOL_PATH)VCVARS32.BAT\" >nul" ;
}
@@ -33,3 +33,4 @@ flags vc8.0 C++FLAGS <native-wchar_t>on : /Zc:wchar_t ;