Changeset 12675 for trunk/abcl/build.xml
- Timestamp:
- 05/13/10 16:38:10 (13 years ago)
- File:
-
- 1 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>
Note: See TracChangeset
for help on using the changeset viewer.