SHA256
1
0
forked from pool/syslinux

Accepting request 1089159 from home:msmeissn:branches:system:install:head

- Build the system installable binaries with RPM_OPT_FLAGS, to allow
  utilization of stack-protector and FORTIFY_SOURCE. (bsc#1211640)

OBS-URL: https://build.opensuse.org/request/show/1089159
OBS-URL: https://build.opensuse.org/package/show/system:install:head/syslinux?expand=0&rev=107
This commit is contained in:
Steffen Winterfeldt 2023-11-16 14:34:31 +00:00 committed by Git OBS Bridge
parent 7c063f7fe4
commit de7ca1a7f7
2 changed files with 15 additions and 1 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Fri May 26 08:42:21 UTC 2023 - Marcus Meissner <meissner@suse.com>
- Build the system installable binaries with RPM_OPT_FLAGS, to allow
utilization of stack-protector and FORTIFY_SOURCE. (bsc#1211640)
-------------------------------------------------------------------
Wed Jun 9 10:45:24 UTC 2021 - Wolfgang Frisch <wolfgang.frisch@suse.com>

View File

@ -1,7 +1,7 @@
#
# spec file for package syslinux
#
# Copyright (c) 2021 SUSE LLC
# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -112,6 +112,14 @@ Authors:
cp %{SOURCE2} .
make spotless
make
# rebuild the on-system binaries with distribution optflags for stack protector etc.
for dir in extlinux utils linux mtools
do
cd $dir
make clean
make OPTFLAGS="%optflags"
cd ..
done
%install
make install-all \