mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 11:05:40 +01:00
Fix a stray CR inside a line
Use CRLF consistently instead of cobbling a \r here and a \n there. The generated files don't change. Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
parent
368ccd416b
commit
fea21d4c3d
@ -18,7 +18,8 @@
|
|||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
<SOURCES>
|
<ItemGroup>
|
||||||
|
<SOURCES>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="mbedTLS.vcxproj">
|
<ProjectReference Include="mbedTLS.vcxproj">
|
||||||
|
@ -93,10 +93,10 @@ sub gen_app {
|
|||||||
$path =~ s!/!\\!g;
|
$path =~ s!/!\\!g;
|
||||||
(my $appname = $path) =~ s/.*\\//;
|
(my $appname = $path) =~ s/.*\\//;
|
||||||
|
|
||||||
my $srcs = "\n <ClCompile Include=\"..\\..\\programs\\$path.c\" \/>\r";
|
my $srcs = "<ClCompile Include=\"..\\..\\programs\\$path.c\" \/>";
|
||||||
if( $appname eq "ssl_client2" or $appname eq "ssl_server2" or
|
if( $appname eq "ssl_client2" or $appname eq "ssl_server2" or
|
||||||
$appname eq "query_compile_time_config" ) {
|
$appname eq "query_compile_time_config" ) {
|
||||||
$srcs .= "\n <ClCompile Include=\"..\\..\\programs\\ssl\\query_config.c\" \/>\r";
|
$srcs .= "\r\n <ClCompile Include=\"..\\..\\programs\\ssl\\query_config.c\" \/>";
|
||||||
}
|
}
|
||||||
|
|
||||||
my $content = $template;
|
my $content = $template;
|
||||||
|
Loading…
Reference in New Issue
Block a user