mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 01:36:01 +02:00
Fix clean failing when dsf-gdb ant script has never been executed
Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
This commit is contained in:
parent
e13572fc4c
commit
972006b048
1 changed files with 5 additions and 1 deletions
|
@ -10,7 +10,11 @@
|
|||
<exec executable="make" dir="${src_dir}" />
|
||||
</target>
|
||||
|
||||
<target name="clean" description="Delete Test Applications">
|
||||
<condition property="binDirExists">
|
||||
<available file="${bin_dir}" type="dir"/>
|
||||
</condition>
|
||||
|
||||
<target name="clean" description="Delete Test Applications" if="binDirExists">
|
||||
<delete>
|
||||
<fileset dir="${bin_dir}" includes="*"/>
|
||||
</delete>
|
||||
|
|
Loading…
Add table
Reference in a new issue