cmucl -nositeint



Hello,

I just compiled and installed maxima from sources using cmucl 19d.

We have a site-init file that defines a top-level command line interface,
and I was getting an error on starting maxima from redefining a symbol in this package,
until I added -nositeinit to the call to cmucl in the maxima wrapper script:

 elif [ "$MAXIMA_LISP" = "cmucl" ]; then
    if [ "$layout_autotools" = "true" ]; then
        exec "$MAXIMA_IMAGESDIR/binary-$MAXIMA_LISP/lisp" -nositeinit -quiet -core "$maxima_image_base.core" -eval '(cl-user::run)' -- "$arg1" "$arg2" "$arg3" "$arg4" "$arg5" "$arg6" "$arg7" "$arg8" "$arg9"
    else
        exec "lisp" -nositeinit -quiet -core "$maxima_image_base.core" -eval '(cl-user::run)' -- "$arg1" "$arg2" "$arg3" "$arg4" "$arg5" "$arg6" "$arg7" "$arg8" "$arg9"
    fi

which fixed the problem.

Would it be possible to include this change in the distribution?

thanks.