mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-07 04:56:58 +02:00
fix(build_library): Remove reference to old SDK profile
The SDK's profile changed to coreos:coreos/amd64/sdk quite a long time ago. Remove this last reference to it so the alias can be forgotten.
This commit is contained in:
parent
9a4ec472ce
commit
93b0ec304a
@ -5,14 +5,15 @@
|
||||
|
||||
# common.sh should be sourced first
|
||||
[[ -n "${DEFAULT_BUILD_ROOT}" ]] || exit 1
|
||||
. "${SCRIPTS_DIR}/sdk_lib/sdk_util.sh"
|
||||
. "${SCRIPTS_DIR}/sdk_lib/sdk_util.sh" || exit 1
|
||||
. "${BUILD_LIBRARY_DIR}/toolchain_util.sh" || exit 1
|
||||
|
||||
# Default option values, may be provided before including this file
|
||||
: ${TYPE:="coreos-sdk"}
|
||||
: ${ARCH:=$(portageq envvar ARCH)}
|
||||
: ${ARCH:=$(get_sdk_arch)}
|
||||
: ${DEFAULT_CATALYST_ROOT:="${DEFAULT_BUILD_ROOT}/catalyst"}
|
||||
: ${DEFAULT_SEED:=${COREOS_SDK_TARBALL_PATH}}
|
||||
: ${DEFAULT_PROFILE:="coreos:default/linux/${ARCH}/10.0"}
|
||||
: ${DEFAULT_PROFILE:=$(get_sdk_profile)}
|
||||
# Set to something like "stage4" to restrict what to build
|
||||
# FORCE_STAGES=
|
||||
|
||||
|
@ -11,7 +11,6 @@ TYPE="coreos-toolchains"
|
||||
FORCE_STAGES="stage4"
|
||||
|
||||
. "${BUILD_LIBRARY_DIR}/catalyst.sh" || exit 1
|
||||
. "${BUILD_LIBRARY_DIR}/toolchain_util.sh" || exit 1
|
||||
|
||||
# include upload options
|
||||
. "${BUILD_LIBRARY_DIR}/release_util.sh" || exit 1
|
||||
|
Loading…
Reference in New Issue
Block a user