From b42cfedcf5828dafd45a39945e1160e487bc6187 Mon Sep 17 00:00:00 2001 From: Jeremi Piotrowski Date: Fri, 30 Jul 2021 07:40:40 +0000 Subject: [PATCH] profiles: use correct lib64 path to sysroot-wrappers Sysroot-wrappers contains binaries installed to /usr/lib64/sysroot-wrappers, but the profile referenced them through the 'lib -> lib64' symlink. Stop relying on that symlink, which is not present in arm64 profiles, and is not part of 17.1 amd64 profiles. Signed-off-by: Jeremi Piotrowski --- .../coreos-overlay/profiles/coreos/base/profile.bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk_container/src/third_party/coreos-overlay/profiles/coreos/base/profile.bashrc b/sdk_container/src/third_party/coreos-overlay/profiles/coreos/base/profile.bashrc index bbf8d895b9..4364514f5b 100644 --- a/sdk_container/src/third_party/coreos-overlay/profiles/coreos/base/profile.bashrc +++ b/sdk_container/src/third_party/coreos-overlay/profiles/coreos/base/profile.bashrc @@ -95,7 +95,7 @@ cros_pre_pkg_setup_sysroot_build_bin_dir() { } # Insert our sysroot wrappers into the path -SYSROOT_WRAPPERS_BIN="/usr/lib/sysroot-wrappers/bin" +SYSROOT_WRAPPERS_BIN="/usr/lib64/sysroot-wrappers/bin" if [[ "$PATH" != *"$SYSROOT_WRAPPERS_BIN"* ]]; then export PATH="$SYSROOT_WRAPPERS_BIN:$PATH" fi