diff options
author | Sven Gothel <[email protected]> | 2010-03-26 23:22:46 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-03-26 23:22:46 +0100 |
commit | 4fbe9a41fb025031d85400e0e730fd12be1f30e4 (patch) | |
tree | be6dbd8bbca343047fc40c94bbe725a6c61260f1 /make/gluegen-cpptasks.xml | |
parent | 6cefd27707036faf494eab9e1f0c7970c0c40e0d (diff) |
Use property.location for compatible absolute path composition
Diffstat (limited to 'make/gluegen-cpptasks.xml')
-rwxr-xr-x | make/gluegen-cpptasks.xml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/make/gluegen-cpptasks.xml b/make/gluegen-cpptasks.xml index dc88340..f569ea7 100755 --- a/make/gluegen-cpptasks.xml +++ b/make/gluegen-cpptasks.xml @@ -26,18 +26,20 @@ <typedef resource="net/sf/antcontrib/cpptasks/antlib.xml" classpath="${gluegen.root}/make/lib/cpptasks.jar;${gluegen.root}/make/lib/CppTasksGCCNamespaceHack.jar"/> <condition property="gluegen-cpptasks.file" - value="${basedir}/${gluegen.root}/make/gluegen-cpptasks-base.xml"> + value="${gluegen.root}/make/gluegen-cpptasks-base.xml"> <not> <isset property="gluegen-cpptask.file" /> </not> </condition> + <property name="gluegen-cpptasks.file.abs-path" location="${gluegen-cpptasks.file}" /> + <!-- <echo message="gluegen-cpptasks.xml: gluegen.root ${gluegen.root}"/> - <echo message="gluegen-cpptasks.xml: gluegen-cpptasks.file ${gluegen-cpptasks.file}"/> + <echo message="gluegen-cpptasks.xml: gluegen-cpptasks.file ${gluegen-cpptasks.file} -> ${gluegen-cpptasks.file.abs-path}"/> <echo message="gluegen-cpptasks.xml: basedir ${basedir}"/> --> - <import file="${gluegen-cpptasks.file}" optional="false" /> + <import file="${gluegen-cpptasks.file.abs-path}" optional="false" /> </project> |