diff --git a/WHATSNEW b/WHATSNEW index 2dcc80615..41f4d4471 100644 --- a/WHATSNEW +++ b/WHATSNEW @@ -48,6 +48,9 @@ Fixed bugs: * junit4 did not work with fork=no and junit4 in $ANT_HOME/lib. Bugzilla report 40697. +* PathConvert on Windows should process forward and back slashes equivalently. + Bugzilla report 32884. + Other changes: -------------- diff --git a/docs/manual/CoreTasks/pathconvert.html b/docs/manual/CoreTasks/pathconvert.html index 18c1aba3d..080190280 100644 --- a/docs/manual/CoreTasks/pathconvert.html +++ b/docs/manual/CoreTasks/pathconvert.html @@ -107,9 +107,13 @@ drive letters to Unix paths, and vice-versa.
+ <pathconvert property="prop" dirsep="|"> + <map from="${basedir}/abc/" to=''/> + <path location="abc/def/ghi"/> + </pathconvert> ++
+ This example sets the property "prop" to "def|ghi" on + Windows and on Unix. +