shim-v2: Remove MEASURED_ROOTFS assignment for s390x

As a follow-up for #10904, we do not need to set MEASURED_ROOTFS to no
on s390x explicitly. The GHA workflow already exports this variable.
This commit removes the redundant assignment.

Signed-off-by: Hyounggyu Choi <Hyounggyu.Choi@ibm.com>
This commit is contained in:
Hyounggyu Choi 2025-02-20 10:37:16 +01:00
parent f51d84b466
commit 1a9dabd433

View File

@ -874,9 +874,6 @@ install_shimv2() {
export GO_VERSION
export RUST_VERSION
export MEASURED_ROOTFS
if [ "${ARCH}" == "s390x" ]; then
export MEASURED_ROOTFS=no
fi
DESTDIR="${destdir}" PREFIX="${prefix}" "${shimv2_builder}"
}