summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorKen Sharp <ken.sharp@artifex.com>2009-09-22 07:32:57 +0000
committerKen Sharp <ken.sharp@artifex.com>2009-09-22 07:32:57 +0000
commitb27fc9f0204b57729ad626922db8a8da9e93dd85 (patch)
treea6d55d99ec20664274bad18786a74a77db7a3a4e /common
parent4eb55a143ac433feafe631ba1318c283a7d3d038 (diff)
Fix (build) : Incorrect path for Visual Studio 9 in make file
Details When the variable MSVC_VERSION (set from the nmake version) is 9, the DEVSTUDIO variable, which contains a path used as the base to find the compiler and tools, was set to 'C:\Program Files\Microsoft Visual Studio 9' the correct default is in fact 'C:\Program Files\Microsoft Visual Studio 9.0' Expected differences None, but the build should work with Visual Studio 9 now. git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@10079 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'common')
-rw-r--r--common/msvcdefs.mak2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/msvcdefs.mak b/common/msvcdefs.mak
index 4b15d2c54..eee56c545 100644
--- a/common/msvcdefs.mak
+++ b/common/msvcdefs.mak
@@ -89,7 +89,7 @@ LINKLIBPATH=/LIBPATH:"$(COMPBASE)\lib\amd64" /LIBPATH:"$(COMPBASE)\PlatformSDK\L
!if $(MSVC_VERSION) == 9
! ifndef DEVSTUDIO
-DEVSTUDIO=C:\Program Files\Microsoft Visual Studio 9
+DEVSTUDIO=C:\Program Files\Microsoft Visual Studio 9.0
! endif
!endif