Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Only clear execstack on armhf #231

Merged
merged 1 commit into from
Jul 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1582,7 +1582,9 @@ parts:
cp /snap/$CRAFT_EXT_CORE_LEVEL/current/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR/libc_malloc_debug.so.0 lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR/

# Necessary for armhf builds, triggers review warning
execstack --clear-execstack usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR/libde265.so.0*
if [ "$CRAFT_ARCH_TRIPLET_BUILD_FOR" = "arm-linux-gnueabihf" ]; then
execstack --clear-execstack usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR/libde265.so.0*
fi

# Used by the gnome snapcraft extensions to load translations from within the content snap
bindtextdomain:
Expand Down
Loading