Skip to content

Commit

Permalink
Remove trailing apostrophe from version notice in msvc.jam (#513)
Browse files Browse the repository at this point in the history
  • Loading branch information
mloskot authored and grafikrobot committed Dec 16, 2019
1 parent 5eb7716 commit eadc7ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tools/msvc.jam
Original file line number Diff line number Diff line change
Expand Up @@ -1043,15 +1043,15 @@ local rule generate-setup-cmd ( version : command : parent : options * : cpu : g
{
if $(.debug-configuration)
{
ECHO 'notice\: "[generate-setup-cmd]" $(version) is 14.2' ;
ECHO "notice: [generate-setup-cmd] $(version) is 14.2" ;
}
parent = [ path.native [ path.join $(parent) "..\\..\\..\\..\\..\\Auxiliary\\Build" ] ] ;
}
else if [ MATCH "(14.1)" : $(version) ]
{
if $(.debug-configuration)
{
ECHO 'notice\: "[generate-setup-cmd]" $(version) is 14.1' ;
ECHO "notice: [generate-setup-cmd] $(version) is 14.1" ;
}
parent = [ path.native [ path.join $(parent) "..\\..\\..\\..\\..\\Auxiliary\\Build" ] ] ;
}
Expand Down

0 comments on commit eadc7ac

Please sign in to comment.