Disable errors for executable stacks (enabled too early by previous delta).

This commit is contained in:
Nick Clifton 2023-11-28 10:22:39 +00:00
parent 00415f44d2
commit 1d05c1f190

View File

@ -2,7 +2,7 @@
Summary: A GNU collection of binary utilities
Name: binutils%{?_with_debug:-debug}
Version: 2.41
Release: 14%{?dist}
Release: 15%{?dist}
License: GPL-3.0-or-later AND (GPL-3.0-or-later WITH Bison-exception-2.2) AND (LGPL-2.0-or-later WITH GCC-exception-2.0) AND BSD-3-Clause AND GFDL-1.3-or-later AND GPL-2.0-or-later LGPL-2.1-or-later AND LGPL-2.0-or-later
URL: https://sourceware.org/binutils
@ -38,8 +38,8 @@ URL: https://sourceware.org/binutils
%define warn_for_rwx_segments 1
# Turn the above warnings into errors. Only effective if the warnings are enabled.
%define error_for_executable_stacks 1
%define error_for_rwx_segments 1
%define error_for_executable_stacks 0
%define error_for_rwx_segments 0
# Enable support for GCC LTO compilation.
# Disable if it is necessary to work around bugs in LTO.
@ -1295,6 +1295,9 @@ exit 0
#----------------------------------------------------------------------------
%changelog
* Tue Nov 28 2023 Nick Clifton <nickc@redhat.com> - 2.41-15
- Disable errors for executable stacks (enabled too early by previous delta).
* Tue Nov 21 2023 Nick Clifton <nickc@redhat.com> - 2.41-14
- Enable errors for executable stacks.