mirror of
https://github.com/boostorg/build.git
synced 2026-02-15 13:02:11 +00:00
Regex bug fix
[SVN r18655]
This commit is contained in:
@@ -51,7 +51,7 @@ import modules ;
|
||||
# asking for help.
|
||||
for local arg in [ MATCH ^--([^-=].*) : $(ARGV) ]
|
||||
{
|
||||
local split = [ MATCH ^([^-=]+([^=]*))(=?)(.*)$ : $(arg) ] ;
|
||||
local split = [ MATCH ^(([^-=]+)[^=]*)(=?)(.*)$ : $(arg) ] ;
|
||||
local full-name = $(split[1]) ;
|
||||
local prefix = $(split[2]) ;
|
||||
local value ;
|
||||
|
||||
@@ -51,7 +51,7 @@ import modules ;
|
||||
# asking for help.
|
||||
for local arg in [ MATCH ^--([^-=].*) : $(ARGV) ]
|
||||
{
|
||||
local split = [ MATCH ^([^-=]+([^=]*))(=?)(.*)$ : $(arg) ] ;
|
||||
local split = [ MATCH ^(([^-=]+)[^=]*)(=?)(.*)$ : $(arg) ] ;
|
||||
local full-name = $(split[1]) ;
|
||||
local prefix = $(split[2]) ;
|
||||
local value ;
|
||||
|
||||
Reference in New Issue
Block a user