configure.sh: Remove mentions of --no-proton-sdk.

This commit is contained in:
Arkadiusz Hiler 2023-09-22 23:21:29 +03:00
parent c9f5e8ff47
commit ea08ded0ca

View File

@ -279,7 +279,7 @@ function parse_args() {
}
usage() {
"$1" "Usage: $0 { --no-proton-sdk | --proton-sdk-image=<image> }"
"$1" "Usage: $0 { --proton-sdk-image=<image> }"
"$1" " Generate a Makefile for building Proton. May be run from another directory to create"
"$1" " out-of-tree build directories (e.g. mkdir mybuild && cd mybuild && ../configure.sh)"
"$1" ""
@ -307,9 +307,6 @@ usage() {
"$1" " for build steps that must be run in an SDK"
"$1" " environment. See README.md for instructions to"
"$1" " create this image."
"$1" ""
"$1" " --no-proton-sdk Do not automatically invoke any runtime SDK as part of the build."
"$1" " Build steps may still be manually run in a runtime environment."
exit 1;
}