This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 59457 - devel cluster doesn't exist by default - first clean failed
Summary: devel cluster doesn't exist by default - first clean failed
Status: VERIFIED FIXED
Alias: None
Product: apisupport
Classification: Unclassified
Component: Project (show other bugs)
Version: 5.x
Hardware: All All
: P3 blocker (vote)
Assignee: Jesse Glick
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-06-01 09:15 UTC by Martin Krauskopf
Modified: 2005-09-05 09:51 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Martin Krauskopf 2005-06-01 09:15:02 UTC
0) build fresh netbeans
1) run it, create new standalone module
2) run ant clean on it (either from IDE or from CLI)

/usr/share/java/netbeans-cvs-current/nbbuild/netbeans/harness/common.xml:333: \
/usr/share/java/netbeans-cvs-current/nbbuild/netbeans/devel not found.

I don't know if the devel cluster should be already distributed with nb, but
better is to fix the clean target. e.g.

line 333 in nbbuild/templates/common.xml:
-        <delete>
+        <delete failonerror="false">

Probably not the best fix :)
Comment 1 Jesse Glick 2005-06-01 16:59:25 UTC
Yes, that patch is the simplest thing I can think of, though not perfect (would
report build success if you had a real I/O error, e.g.).
Comment 2 Jesse Glick 2005-06-01 18:43:06 UTC
committed     Up-To-Date  1.7         nbbuild/templates/common.xml
Comment 3 Martin Krauskopf 2005-06-01 18:56:39 UTC
verified