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 14846 - Update to nbbuild/build.xml to include all- targets for cpp and externaleditor
Summary: Update to nbbuild/build.xml to include all- targets for cpp and externaleditor
Status: RESOLVED FIXED
Alias: None
Product: www
Classification: Unclassified
Component: Builds & Repositories (show other bugs)
Version: 3.x
Hardware: Sun Solaris
: P1 blocker (vote)
Assignee: nbbuild-issues@ide
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2001-08-28 08:14 UTC by Torbjorn Norbye
Modified: 2001-08-29 10:08 UTC (History)
0 users

See Also:
Issue Type: TASK
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Torbjorn Norbye 2001-08-28 08:14:47 UTC
I've attached a patch to nbbuild.xml which adds all- targets for
cpp and externaleditor (all-cpp, all-externaleditor), which are new
modules in CVS.

The patch also adds these two modules to the "bloated" configurations.
Comment 1 Torbjorn Norbye 2001-08-28 08:20:29 UTC
Issuezilla "add attachment" doesn't work for me. It failed 
yesterday and it failed again today - after pressing Submit
it just returns me to the form, with the forms cleared.
So I'm submitting the patch here as plaintext - luckily it's
short and easy. If there's a problem with this (e.g. bugzilla
"html"izing the text) I can provide the patch both as a straight
diff and as a contextual diff via e-mail - just let me know!

Index: build.xml
===================================================================
RCS file:
/usr/local/tigris/data/helm/cvs/repository/nbbuild/build.xml,v
retrieving revision 1.132
diff -r1.132 build.xml
103c103
<       <config name="bloated"
modules="ant,apisupport,apisupport/lite,applet,autoupdate,beans,classfile,clazz,cpplite,debuggercore,debuggerjpda,debuggertools,editor,extbrowser,form,html,httpserver,i18n,icebrowser,image,innertesters,j2eeserver,jarpackager,java,javacvs,javadoc,logger,makefile,multicompile,objectbrowser,openidex,projects,properties,remotefs,rmi,scripting,serialversion,sysprops,text,usersguide,utilities,vcscore,vcscvs,vcsgeneric,web"/>
---
>       <config name="bloated"
modules="ant,apisupport,apisupport/lite,applet,autoupdate,beans,classfile,clazz,cpp,cpplite,debuggercore,debuggerjpda,debuggertools,editor,extbrowser,externaleditor,form,html,httpserver,i18n,icebrowser,image,innertesters,j2eeserver,jarpackager,java,javacvs,javadoc,logger,makefile,multicompile,objectbrowser,openidex,projects,properties,remotefs,rmi,scripting,serialversion,sysprops,text,usersguide,utilities,vcscore,vcscvs,vcsgeneric,web"/>
105c105
<       <config name="bloated-plus-extrabins"
modules="ant,apisupport,apisupport/lite,applet,autoupdate,beans,classfile,clazz,cpplite,debuggercore,debuggerjpda,debuggertools,editor,extbrowser,form,html,httpserver,i18n,icebrowser,image,innertesters,j2eeserver,jarpackager,java,javacvs,javadoc,jini,logger,makefile,multicompile,objectbrowser,openidex,projects,properties,remotefs,rmi,scripting,serialversion,sysprops,text,usersguide,utilities,vcscore,vcscvs,vcsgeneric,web"/>
---
>       <config name="bloated-plus-extrabins"
modules="ant,apisupport,apisupport/lite,applet,autoupdate,beans,classfile,clazz,cpp,cpplite,debuggercore,debuggerjpda,debuggertools,editor,extbrowser,externaleditor,form,html,httpserver,i18n,icebrowser,image,innertesters,j2eeserver,jarpackager,java,javacvs,javadoc,jini,logger,makefile,multicompile,objectbrowser,openidex,projects,properties,remotefs,rmi,scripting,serialversion,sysprops,text,usersguide,utilities,vcscore,vcscvs,vcsgeneric,web"/>
325a326,335
>   </target>
>   <!-- XXX illegal dependence on core! -->
>   <target name="all-cpp" depends="all-openide,all-editor,all-core">
>     <echo message="Building module cpp..."/>
>     <ant dir="../cpp" target="netbeans"/>
>   </target>
>   <!-- XXX illegal dependence on core! -->
>   <target name="all-externaleditor"
depends="all-openide,all-editor,all-core">
>     <echo message="Building module externaleditor..."/>
>     <ant dir="../externaleditor" target="netbeans"/>
Comment 2 Jesse Glick 2001-08-28 19:17:39 UTC
I would make this higher than a P3 if I were you. It should be done
quickly I think.
Comment 3 Torbjorn Norbye 2001-08-28 22:44:17 UTC
Changed the priority to P1 because this needs to happen pretty
soon.
Comment 4 Michal Zlamal 2001-08-29 09:43:17 UTC
I'm working on it
Comment 5 Michal Zlamal 2001-08-29 10:08:02 UTC
I added cpp and externaleditor modules to bloated config and I alse
added all required targets.