From: James Zern Date: Wed, 15 Jun 2011 21:42:06 +0000 (-0700) Subject: gen_msvs_proj: write boolean for Debug attribute X-Git-Tag: v0.9.7~83^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=91b167202d0fdd96a83ff2d4a3102a1e154bfc39;p=libvpx gen_msvs_proj: write boolean for Debug attribute Replace =1 with =true for yasm tool element. This aids in upgrading e.g., vs9 project files to vs10. build/x86-msvs/yasm.xml generated during conversion will require the Separator attribute to be removed for the build to complete successfully. Change-Id: If75c4f9a925529740048882003e9d766c5ac4f0c --- diff --git a/build/make/gen_msvs_proj.sh b/build/make/gen_msvs_proj.sh index fb948fd3b..ff9b665fc 100755 --- a/build/make/gen_msvs_proj.sh +++ b/build/make/gen_msvs_proj.sh @@ -365,7 +365,7 @@ generate_vcproj() { DebugInformationFormat="1" \ Detect64BitPortabilityProblems="true" \ - $uses_asm && tag Tool Name="YASM" IncludePaths="$incs" Debug="1" + $uses_asm && tag Tool Name="YASM" IncludePaths="$incs" Debug="true" ;; *) tag Tool \ @@ -379,7 +379,7 @@ generate_vcproj() { DebugInformationFormat="1" \ Detect64BitPortabilityProblems="true" \ - $uses_asm && tag Tool Name="YASM" IncludePaths="$incs" Debug="1" + $uses_asm && tag Tool Name="YASM" IncludePaths="$incs" Debug="true" ;; esac ;;