Changeset 12675
- Timestamp:
- 05/13/10 16:38:10 (13 years ago)
- Location:
- trunk/abcl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/build.xml
r12671 r12675 242 242 <jvmarg value="-Dabcl.home=${abcl.home.dir}${file.separator}"/> 243 243 <arg value="--noinit"/> 244 <arg value="--nosystem"/> 244 245 <arg value="--eval"/> 245 246 <arg value="(setf *load-verbose* t)"/> … … 279 280 280 281 <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 282 287 srcfile="${system.lisp.file}" 283 288 targetfile="${abcl.startup.file}"/> 289 </and> 290 </condition> 284 291 </target> 285 292 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"> 287 295 <touch file="${src.dir}/org/armedbear/lisp/compile-system.lisp"/> 288 296 </target> -
trunk/abcl/src/org/armedbear/lisp/Interpreter.java
r12673 r12675 53 53 54 54 private static boolean noinit = false; 55 private static boolean nosystem = false; 55 56 private static boolean noinform = false; 56 57 … … 93 94 initializeLisp(); 94 95 initializeTopLevel(); 95 initializeSystem(); 96 if (!nosystem) 97 initializeSystem(); 96 98 if (!noinit) 97 99 processInitializationFile(); … … 232 234 if (arg.equals("--noinit")) { 233 235 noinit = true; 236 } else if (arg.equals("--nosystem")) { 237 nosystem = true; 234 238 } else if (arg.equals("--noinform")) { 235 239 noinform = true;
Note: See TracChangeset
for help on using the changeset viewer.