mirror of
https://github.com/boostorg/build.git
synced 2026-02-15 13:02:11 +00:00
Handle doxygen:param properties with equal signs in them
[SVN r20164]
This commit is contained in:
@@ -75,8 +75,8 @@ rule headers-to-doxyfile ( target : sources * : properties * )
|
||||
# Translate <doxygen:param> into command line flags.
|
||||
for local param in [ feature.get-values <doxygen:param> : $(properties) ]
|
||||
{
|
||||
local namevalue = [ regex.split $(param) "=" ] ;
|
||||
text += "$(namevalue[1])=$(namevalue[2])" ;
|
||||
local namevalue = [ regex.match ([^=]*)=(.*) : $(param) ] ;
|
||||
text += "$(namevalue[1]) = $(namevalue[2])" ;
|
||||
}
|
||||
|
||||
local headers = "" ;
|
||||
|
||||
@@ -75,8 +75,8 @@ rule headers-to-doxyfile ( target : sources * : properties * )
|
||||
# Translate <doxygen:param> into command line flags.
|
||||
for local param in [ feature.get-values <doxygen:param> : $(properties) ]
|
||||
{
|
||||
local namevalue = [ regex.split $(param) "=" ] ;
|
||||
text += "$(namevalue[1])=$(namevalue[2])" ;
|
||||
local namevalue = [ regex.match ([^=]*)=(.*) : $(param) ] ;
|
||||
text += "$(namevalue[1]) = $(namevalue[2])" ;
|
||||
}
|
||||
|
||||
local headers = "" ;
|
||||
|
||||
Reference in New Issue
Block a user