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
This commit is contained in:
parent
7be5b6dae4
commit
91b167202d
@ -365,7 +365,7 @@ generate_vcproj() {
|
|||||||
DebugInformationFormat="1" \
|
DebugInformationFormat="1" \
|
||||||
Detect64BitPortabilityProblems="true" \
|
Detect64BitPortabilityProblems="true" \
|
||||||
|
|
||||||
$uses_asm && tag Tool Name="YASM" IncludePaths="$incs" Debug="1"
|
$uses_asm && tag Tool Name="YASM" IncludePaths="$incs" Debug="true"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
tag Tool \
|
tag Tool \
|
||||||
@ -379,7 +379,7 @@ generate_vcproj() {
|
|||||||
DebugInformationFormat="1" \
|
DebugInformationFormat="1" \
|
||||||
Detect64BitPortabilityProblems="true" \
|
Detect64BitPortabilityProblems="true" \
|
||||||
|
|
||||||
$uses_asm && tag Tool Name="YASM" IncludePaths="$incs" Debug="1"
|
$uses_asm && tag Tool Name="YASM" IncludePaths="$incs" Debug="true"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user