diff --git a/v2/tools/rc.jam b/v2/tools/rc.jam index a8288143b..e1488ee60 100644 --- a/v2/tools/rc.jam +++ b/v2/tools/rc.jam @@ -114,11 +114,11 @@ class res-scanner : scanner local quoted = [ regex.transform $(matches) : "#include[ ]*\"([^\"]+)\"" ] ; local res = [ regex.transform $(matches) : "[^ ]+[ ]+(BITMAP|CURSOR|FONT|ICON|MESSAGETABLE|RT_MANIFEST)[ ]+(([^ \"]+)|\"([^\"]+)\")" : 3 4 ] ; - # Icons and other includes may referenced as + # Icons and other includes may be referenced as # # IDR_MAINFRAME ICON "res\\icon.ico" # - # so we have to replace double backslashes to single ones. + # so we have to replace double backslashes with single ones. res = [ regex.replace-list $(res) : "\\\\\\\\" : "/" ] ; # CONSIDER: the new scoping rules seem to defeat "on target" variables.