2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 12:42:11 +00:00
* new/feature.jam (get-values): Don't change slash direction on windows.
  The bug can be seen by reverting this change and adding

      import feature ;
      ECHO [ feature.get-values <file> : <file>a/b/c.dll ] ;

  to 'project-root.jam' of examples-v2/hello.


[SVN r18366]
This commit is contained in:
Vladimir Prus
2003-05-08 12:26:38 +00:00
parent 680a933600
commit 7ed3c0d3cf

View File

@@ -536,7 +536,7 @@ rule get-values ( feature : properties * )
{
if $(p:G) = $(feature)
{
result += $(p:G=) ;
result += $(p:TG=) ;
}
}
return $(result) ;