carnold 2005/06/13 22:03:47
Modified: . build.xml
Log:
LOGCXX-77: Fix clean-output to work if tests/output not yet created
Revision Changes Path
1.71 +4 -4 logging-log4cxx/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/logging-log4cxx/build.xml,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- build.xml 13 Jun 2005 22:00:03 -0000 1.70
+++ build.xml 14 Jun 2005 05:03:47 -0000 1.71
@@ -168,13 +168,13 @@
<property name="project.type" value="xcode"/>
<property name="project.dir" value="xcode"/>
<property name="has-iconv" value="true"/>
-
+
<condition property="mac_osx_wchar_not_supported_yet" value="true">
- <equals arg1="${has.wchar_t}" arg2="1"/>
+ <equals arg1="${has.wchar_t}" arg2="1"/>
</condition>
<fail if="mac_osx_wchar_not_supported_yet">
-wchar_t is not supported in Mac OS/X yet,
+wchar_t is not supported in Mac OS/X yet,
cppunit fails to link
LogString may become CFString, see bug LOGCXX-85
@@ -944,7 +944,7 @@
<target name="clean-output" depends="init">
<delete>
- <fileset dir="${tests.dir}/output"/>
+ <fileset dir="${tests.dir}" includes="output/*"/>
</delete>
</target>