Changeset 12675 for trunk/abcl/build.xml


Ignore:
Timestamp:
05/13/10 16:38:10 (13 years ago)
Author:
Mark Evenson
Message:

Fix build from scratch breakage in r12673.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/build.xml

    r12671 r12675  
    242242        <jvmarg value="-Dabcl.home=${abcl.home.dir}${file.separator}"/>
    243243  <arg value="--noinit"/>
     244        <arg value="--nosystem"/>
    244245        <arg value="--eval"/>
    245246        <arg value="(setf *load-verbose* t)"/>
     
    279280
    280281    <target name="abcl.system.uptodate">
    281       <uptodate property="abcl.system.needs-update.p"
     282      <condition property="abcl.system.needs-update.p">
     283        <and>
     284          <available file="${system.lisp.file}"/>
     285          <available file="${abcl.startup.file}"/>
     286          <uptodate
    282287                srcfile="${system.lisp.file}"
    283288                targetfile="${abcl.startup.file}"/>
     289        </and>
     290      </condition>
    284291    </target>
    285292   
    286     <target name="abcl.system.update.maybe" depends="abcl.system.uptodate" if="abcl.system.needs-update.p">
     293    <target name="abcl.system.update.maybe" depends="abcl.system.uptodate"
     294            if="abcl.system.needs-update.p">
    287295      <touch file="${src.dir}/org/armedbear/lisp/compile-system.lisp"/>
    288296    </target>
Note: See TracChangeset for help on using the changeset viewer.