Changeset 12675


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

Fix build from scratch breakage in r12673.

Location:
trunk/abcl
Files:
2 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>
  • trunk/abcl/src/org/armedbear/lisp/Interpreter.java

    r12673 r12675  
    5353
    5454    private static boolean noinit = false;
     55    private static boolean nosystem = false;
    5556    private static boolean noinform = false;
    5657
     
    9394        initializeLisp();
    9495        initializeTopLevel();
    95         initializeSystem();
     96        if (!nosystem)
     97            initializeSystem();
    9698        if (!noinit)
    9799            processInitializationFile();
     
    232234                if (arg.equals("--noinit")) {
    233235                    noinit = true;
     236                } else if (arg.equals("--nosystem")) {
     237                    nosystem = true;
    234238                } else if (arg.equals("--noinform")) {
    235239                    noinform = true;
Note: See TracChangeset for help on using the changeset viewer.