forked from pool/s390-tools
9901451234
- Added s390-tools-sles15sp3-zipl-fix-4k-scsi-ipl.patch (bsc#1183039) IPL is not working when bootloader is installed on a SCSI disk with 4k physical blocksize without using a devicemapper target. - Added s390-tools-sles15sp3-remove-no-pie-link-arguments.patch so that we can build on systems with binutils 2.36 and higher. Without this, the build fails because that version of the ld command doesn't recognize "-no-pie" an acceptable argument. - Updated the mkdump.pl script to make the name of the temporary configuration file in /tmp/ unpredictable. (bsc#1182876) OBS-URL: https://build.opensuse.org/request/show/877833 OBS-URL: https://build.opensuse.org/package/show/Base:System/s390-tools?expand=0&rev=114
14 lines
413 B
Diff
14 lines
413 B
Diff
--- s390-tools-2.15.1/common.mak 2020-10-28 10:31:59.000000000 -0400
|
|
+++ s390-tools-2.15.1/common.mak 2021-03-01 11:16:20.285597140 -0500
|
|
@@ -224,8 +224,8 @@
|
|
|
|
ifneq ($(shell $(CC_SILENT) -dumpspecs 2>/dev/null | grep -e '[^f]no-pie'),)
|
|
NO_PIE_CFLAGS := -fno-pie
|
|
- NO_PIE_LINKFLAGS := -no-pie
|
|
- NO_PIE_LDFLAGS := -no-pie
|
|
+ NO_PIE_LINKFLAGS :=
|
|
+ NO_PIE_LDFLAGS :=
|
|
else
|
|
NO_PIE_CFLAGS :=
|
|
NO_PIE_LINKFLAGS :=
|