[cmucl/cmucl][rtoy-unix-core] Don't pass in the command line args to lisp when building asdf and
![](https://secure.gravatar.com/avatar/cc13150cabd87c26f35cb4b0ea78d66d.jpg?s=120&d=mm&r=g)
Raymond Toy pushed to branch rtoy-unix-core at cmucl / cmucl Commits: e549b338 by Raymond Toy at 2015-05-07T22:39:30Z Don't pass in the command line args to lisp when building asdf and friends. The command line args aren't relevant to lisp. - - - - - 1 changed file: - bin/build.sh Changes: ===================================== bin/build.sh ===================================== --- a/bin/build.sh +++ b/bin/build.sh @@ -251,7 +251,7 @@ buildit # Asdf and friends are part of the base install, so we need to build # them now. -$TARGET/lisp/lisp -noinit -nositeinit -batch "$@" << EOF || exit 3 +$TARGET/lisp/lisp -noinit -nositeinit -batch << EOF || exit 3 (in-package :cl-user) (setf (ext:search-list "target:") '("$TARGET/" "src/")) View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/e549b338970eee4cef8403651a...
participants (1)
-
Raymond Toy