2
0
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:
Douglas Gregor
2003-09-22 22:41:29 +00:00
parent b3b30350a8
commit 4e1ca184cf
2 changed files with 4 additions and 4 deletions

View File

@@ -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 = "" ;

View File

@@ -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 = "" ;