From 2b42aa7c1a4ff5194797bf5ee3a6e31299d08e30 Mon Sep 17 00:00:00 2001 From: Maarten Coene Date: Thu, 23 Dec 2010 22:14:28 +0000 Subject: [PATCH] Fixed error in globmapper example: the correct attribute is 'handledirsep' instead of 'ignoredirchar'. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@1052393 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/Types/mapper.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/manual/Types/mapper.html b/docs/manual/Types/mapper.html index 7a71feea3..bdad77c18 100644 --- a/docs/manual/Types/mapper.html +++ b/docs/manual/Types/mapper.html @@ -335,7 +335,7 @@ that don't match the from pattern will be ignored.

<pathconvert property="x" targetos="unix"> <path path="d/e/f/j.java"/> <mapper> - <globmapper from="${basedir}\d/e\*" to="*" ignoredirchar="yes"/> + <globmapper from="${basedir}\d/e\*" to="*" handledirsep="yes"/> </mapper> </pathconvert> <echo>x is ${x}</echo>