You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously, installing a package other than
OpenCoarrays as in
./install.sh -p gcc -i /opt/gnu
would result in install.sh execute
./build.sh -p gcc
without passing the additional argument(s).
Now install.sh passes all arguments via
./build.sh "${@}"
This works because the acceptable arguments for
build.sh form a superset of the acceptable
arguments for install.sh.
0 commit comments