Changeset 8891


Ignore:
Timestamp:
03/06/07 15:34:39 (5 years ago)
Author:
sam
Message:

Contrôle du os familly au début des builds de dev bis.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Bui_scBuilder/_dev/build.xml

    r8890 r8891  
    7474                <!-- ini --> 
    7575                <echo message="initialisations"/> 
    76                 <if> 
    77                         <not><os family="windows"/></not> 
    78                         <then> 
    79                                 <fail message="Ce build doit être lancer sous un environnement Windows."/> 
    80                         </then> 
    81                 </if> 
     76                <fail message="Ce build doit être lancer sous un environnement Windows."> 
     77                        <condition><not><os family="windows"/></not></condition> 
     78                </fail> 
    8279                <delete quiet="true" includeemptydirs="true"> 
    8380                        <fileset dir="${destapprootdir}"> 
  • trunk/Bui_scBuilder/_devLin/build.xml

    r8890 r8891  
    7777                <!-- ini --> 
    7878                <echo message="initialisations"/> 
    79                 <if> 
    80                         <not><os family="unix"/></not> 
    81                         <then> 
    82                                 <fail message="Ce build doit être lancer sous un environnement UNIX."/> 
    83                         </then> 
    84                 </if> 
     79                <fail message="Ce build doit être lancer sous un environnement UNIX."> 
     80                        <condition><not><os family="unix"/></not></condition> 
     81                </fail> 
    8582                <delete quiet="true" includeemptydirs="true"> 
    8683                        <fileset dir="${destapprootdir}"> 
  • trunk/Bui_scChain/_dev/build.xml

    r8890 r8891  
    7171                <!-- ini --> 
    7272                <echo message="initialisations"/> 
    73                 <if> 
    74                         <not><os family="windows"/></not> 
    75                         <then> 
    76                                 <fail message="Ce build doit être lancer sous un environnement Windows."/> 
    77                         </then> 
    78                 </if> 
     73                <fail message="Ce build doit être lancer sous un environnement Windows."> 
     74                        <condition><not><os family="windows"/></not></condition> 
     75                </fail> 
    7976                <delete quiet="true" includeemptydirs="true"> 
    8077                        <fileset dir="${destapprootdir}"> 
  • trunk/Bui_scClient/_dev/build.xml

    r8890 r8891  
    7373                <!-- ini --> 
    7474                <echo message="initialisations"/> 
    75                 <if> 
    76                         <not><os family="windows"/></not> 
    77                         <then> 
    78                                 <fail message="Ce build doit être lancer sous un environnement Windows."/> 
    79                         </then> 
    80                 </if> 
     75                <fail message="Ce build doit être lancer sous un environnement Windows."> 
     76                        <condition><not><os family="windows"/></not></condition> 
     77                </fail> 
    8178                <delete dir="${destapprootdir}" quiet="true" includeemptydirs="true"/> 
    8279                <mkdir dir="${destapprootdir}"/> 
Note: See TracChangeset for help on using the changeset viewer.