Parcourir la source

Don't invoke the init target when cleaning.

I'm sure there was a good reason for this at some point, but downloading
and installing all of our dependencies before wiping out the dependencies
folder seems.... silly.

Change-Id: I16f681e6aa16b3370f4377d9519e54e18c66a241
Reviewed-on: http://gerrit.dmdirc.com/3676
Reviewed-by: Greg Holmes <greg@dmdirc.com>
Automatic-Compile: DMDirc Build Manager
pull/1/head
Chris Smith il y a 10 ans
Parent
révision
1dd1a7e0e1
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 3
    3
      nbproject/build-impl.xml

+ 3
- 3
nbproject/build-impl.xml Voir le fichier

@@ -681,8 +681,8 @@ is divided into following sections:
681 681
                 CLEANUP SECTION
682 682
                 ===============
683 683
             -->
684
-    <target depends="init" name="deps-clean" unless="no.deps"/>
685
-    <target depends="init" name="-do-clean">
684
+    <target name="deps-clean" unless="no.deps"/>
685
+    <target name="-do-clean">
686 686
         <delete dir="${build.dir}"/>
687 687
         <delete dir="${dist.dir}"/>
688 688
     </target>
@@ -690,5 +690,5 @@ is divided into following sections:
690 690
         <!-- Empty placeholder for easier customization. -->
691 691
         <!-- You can override this target in the ../build.xml file. -->
692 692
     </target>
693
-    <target depends="init,deps-clean,-do-clean,-post-clean" description="Clean build products." name="clean"/>
693
+    <target depends="deps-clean,-do-clean,-post-clean" description="Clean build products." name="clean"/>
694 694
 </project>

Chargement…
Annuler
Enregistrer