
Raymond Toy pushed to branch issue-363-add-version-number at cmucl / cmucl Commits: 9bf46516 by Raymond Toy at 2025-02-08T19:41:18-08:00 Update callers of load-world.sh not to add version arg Since load-world.sh doesn't need a version arg anymore, update the callers not to add a version since it's not used anyway. - - - - - 2 changed files: - bin/build.sh - bin/cross-build-world.sh Changes: ===================================== bin/build.sh ===================================== @@ -149,7 +149,7 @@ buildit () then $BUILDWORLD $TARGET $OLDLISP $BOOT || { echo "Failed: $BUILDWORLD"; exit 1; } fi - $TOOLDIR/load-world.sh $TARGET "$VERSION" || { echo "Failed: $TOOLDIR/load-world.sh"; exit 1; } + $TOOLDIR/load-world.sh $TARGET || { echo "Failed: $TOOLDIR/load-world.sh"; exit 1; } $TARGET/lisp/lisp -lib $TARGET/lisp -batch -noinit -nositeinit < /dev/null || { echo "Failed: $TARGET/lisp/lisp -batch -noinit"; exit 1; } ===================================== bin/cross-build-world.sh ===================================== @@ -144,5 +144,5 @@ fi if [ "$LOAD_KERNEL" = "yes" ]; then echo Load kernel.core - bin/load-world.sh -p $TARGET cross-compiled + bin/load-world.sh -p $TARGET fi View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/9bf46516506d2bf0d257973b... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/9bf46516506d2bf0d257973b... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)