Use envset target
authorAlberto Di Meglio <alberto.di.meglio@cern.ch>
Fri, 29 Oct 2004 22:55:07 +0000 (22:55 +0000)
committerAlberto Di Meglio <alberto.di.meglio@cern.ch>
Fri, 29 Oct 2004 22:55:07 +0000 (22:55 +0000)
org.glite.lb/build.xml
org.gridsite.core/build.xml

index 57527c8..2445834 100755 (executable)
@@ -20,6 +20,9 @@
 
        Revision history:
        $Log$
+       Revision 1.25  2004/10/28 22:57:36  dimeglio
+       Quoted ant command line parameters
+       
        Revision 1.24  2004/10/28 18:19:30  dimeglio
        Added envcheck to individual components
        
 
        <!-- component targets definitions tag = do not remove = -->
 
-       <target name="client-interface" unless="setenvonly" depends="envcheck">
+       <target name="client-interface" unless="setenvonly" depends="envset">
                <if>
                        <isset property="small.memory" />
                        <then>
                </if>
        </target>
 
-       <target name="server-bones" unless="setenvonly" depends="envcheck">
+       <target name="server-bones" unless="setenvonly" depends="envset">
                <if>
                        <isset property="small.memory" />
                        <then>
                </if>
        </target>
 
-       <target name="common" unless="setenvonly" depends="envcheck, globus,expat,ares,client-interface">
+       <target name="common" unless="setenvonly" depends="envset, globus,expat,ares,client-interface">
                <if>
                        <isset property="small.memory" />
                        <then>
                </if>
        </target>
 
-       <target name="client" unless="setenvonly" depends="envcheck, globus,expat,ares,client-interface,common">
+       <target name="client" unless="setenvonly" depends="envset, globus,expat,ares,client-interface,common">
                <if>
                        <isset property="small.memory" />
                        <then>
                </if>
        </target>
 
-       <target name="server" unless="setenvonly" depends="envcheck, globus,expat,ares,mysql,gsoap,client-interface,common,logger">
+       <target name="server" unless="setenvonly" depends="envset, globus,expat,ares,mysql,gsoap,client-interface,common,logger">
                <if>
                        <isset property="small.memory" />
                        <then>
                </if>
        </target>
 
-       <target name="logger" unless="setenvonly" depends="envcheck, globus,expat,ares,client-interface,common">
+       <target name="logger" unless="setenvonly" depends="envset, globus,expat,ares,client-interface,common">
                <if>
                        <isset property="small.memory" />
                        <then>
        </target>
 
        <!-- Main proxy -->
-       <target name="buildmodules" depends="envcheck
+       <target name="buildmodules" depends="envset
                                                 client-interface,
                                             client,
                                             server-bones,
index 3510ab1..031b776 100644 (file)
@@ -20,6 +20,9 @@
 
        Revision history:
        $Log$
+       Revision 1.4  2004/10/28 23:00:14  dimeglio
+       Removed post-subsystem entry
+       
        Revision 1.3  2004/10/27 11:19:17  dimeglio
        Fixed i386 instead of 1386
        
 
 
        <!-- Main proxy -->
-       <target name="buildmodules" depends="envcheck"/>
+       <target name="buildmodules" depends="envset"/>
 
 </project>