2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 01:12:13 +00:00

Corrected the Cygwin related :W Boost Jam variable expansion example so it would not display the $ sign as # on generated web pages.

[SVN r46751]
This commit is contained in:
Jurko Gospodnetić
2008-06-26 22:23:08 +00:00
parent 87cff5267c
commit 930cd0b253

View File

@@ -1262,9 +1262,10 @@ A variable element's string value can be parsed into grist and filename-related
the [@http://www.cygwin.com/cygwin-api/func-cygwin-conv-to-win32-path.html
=cygwin_conv_to_win32_path=] function. On other platforms, the string is
unchanged. For example
``
x = "/cygdrive/c/Program Files/Borland" ; ECHO $(x:W) ;
``
[pre
local x = "/cygdrive/c/Program Files/Borland" ;
ECHO $(x:W) ;
]
prints [^"C:\\Program Files\\Borland"] on Cygwin
]]