shithub: libvpx

Download patch

ref: 37114919e08a7b59df4aef557fee361ba78844e7
parent: 2fb81fba97d5b1b9376ac74b6a7b67b437f86dcf
parent: 95c34c9053fa79812a3eab3cc34b56cc70007d6d
author: James Zern <jzern@google.com>
date: Wed Feb 5 06:55:35 EST 2014

Merge "gen_msvs_proj: add trailing \ to IntDir"

--- a/build/make/gen_msvs_proj.sh
+++ b/build/make/gen_msvs_proj.sh
@@ -155,8 +155,8 @@
                             tag Tool \
                                 Name="VCCustomBuildTool" \
                                 Description="Assembling \$(InputFileName)" \
-                                CommandLine="$(eval echo \$asm_${cfg}_cmdline) -o \$(IntDir)$objf" \
-                                Outputs="\$(IntDir)$objf" \
+                                CommandLine="$(eval echo \$asm_${cfg}_cmdline) -o \$(IntDir)\\$objf" \
+                                Outputs="\$(IntDir)\\$objf" \
 
                             close_tag FileConfiguration
                         done
@@ -170,7 +170,7 @@
 
                             tag Tool \
                                 Name="VCCLCompilerTool" \
-                                ObjectFile="\$(IntDir)$objf" \
+                                ObjectFile="\$(IntDir)\\$objf" \
 
                             close_tag FileConfiguration
                         done
--