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.

View | Details | Raw Unified | Return to bug 14434
Collapse All | Expand All

(-)nbbuild/build.xml (-3 / +5 lines)
Lines 87-92 Link Here
87
    <property name="firststart.args" value=" -J-Dnetbeans.close=true -J-Dnetbeans.debug.exceptions=true -single ${firststart.args.additional}"/>
87
    <property name="firststart.args" value=" -J-Dnetbeans.close=true -J-Dnetbeans.debug.exceptions=true -single ${firststart.args.additional}"/>
88
    <!-- But this it is OK to change: -->
88
    <!-- But this it is OK to change: -->
89
    <property name="tryme.args" value=" -J-Dnetbeans.debug.exceptions=true -single ${tryme.args.additional}"/>
89
    <property name="tryme.args" value=" -J-Dnetbeans.debug.exceptions=true -single ${tryme.args.additional}"/>
90
    <!-- Only useful to override in conjunction with merge target during development: -->
91
    <property name="fixedmodules" value="core,openide"/>
90
    <!-- Override this with the Ant command, e.g. -Dmoduleconfig=superslim -->
92
    <!-- Override this with the Ant command, e.g. -Dmoduleconfig=superslim -->
91
    <property name="moduleconfig" value="stable"/>
93
    <property name="moduleconfig" value="stable"/>
92
    <!-- You can also explicitly set a particular list of modules if you prefer: -->
94
    <!-- You can also explicitly set a particular list of modules if you prefer: -->
Lines 379-385 Link Here
379
  
381
  
380
  <target name="merge" depends="init,build-messaging">
382
  <target name="merge" depends="init,build-messaging">
381
    <mkdir dir="${netbeans.dest}"/>
383
    <mkdir dir="${netbeans.dest}"/>
382
    <nbmerge dest="${netbeans.dest}" topdir=".." modules="openide,core,${modules}" targetprefix="all-">
384
    <nbmerge dest="${netbeans.dest}" topdir=".." modules="${fixedmodules},${modules}" targetprefix="all-">
383
      <suppress locale="ja" unless="netbeans.japanese"/>
385
      <suppress locale="ja" unless="netbeans.japanese"/>
384
    </nbmerge>
386
    </nbmerge>
385
    <chmod perm="ugo+x">
387
    <chmod perm="ugo+x">
Lines 709-719 Link Here
709
711
710
  <target name="clean" depends="init,localclean"
712
  <target name="clean" depends="init,localclean"
711
          description="Clean out (almost) all build products.">
713
          description="Clean out (almost) all build products.">
712
    <cleanall topdir=".." modules="openide,core,${modules}" targetname="clean"/>
714
    <cleanall topdir=".." modules="${fixedmodules},${modules}" targetname="clean"/>
713
    <echo message="Run `ant real-clean' if desired."/>
715
    <echo message="Run `ant real-clean' if desired."/>
714
  </target>
716
  </target>
715
717
716
  <target name="print-selected-modules" depends="init" description="Prints list of modules to build in selected moduleconfig.">
718
  <target name="print-selected-modules" depends="init" description="Prints list of modules to build in selected moduleconfig.">
717
    <echo message="modules=openide,core,${modules}"/>
719
    <echo message="modules=${fixedmodules},${modules}"/>
718
  </target>
720
  </target>
719
</project>
721
</project>

Return to bug 14434