diff options
Diffstat (limited to 'net-misc/rsync/files/rsync-3.2.0-noexecstack.patch')
-rw-r--r-- | net-misc/rsync/files/rsync-3.2.0-noexecstack.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/net-misc/rsync/files/rsync-3.2.0-noexecstack.patch b/net-misc/rsync/files/rsync-3.2.0-noexecstack.patch deleted file mode 100644 index 918346062e6a..000000000000 --- a/net-misc/rsync/files/rsync-3.2.0-noexecstack.patch +++ /dev/null @@ -1,24 +0,0 @@ -From 75901616c5f38a9ff6ba736c8281933e8ce64b8b Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Holger=20Hoffst=C3=A4tte?= <holger@applied-asynchrony.com> -Date: Sat, 20 Jun 2020 16:54:11 +0200 -Subject: [PATCH] Pass --noexecstack to assembler. - -This prevents Linux from rightfully complaining about an executable -stack segment, which is widely considered a security hazard. ---- - Makefile.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/Makefile.in b/Makefile.in -index 31ddc43b..60aff920 100644 ---- a/Makefile.in -+++ b/Makefile.in -@@ -135,7 +135,7 @@ simd-checksum-x86_64.o: simd-checksum-x86_64.cpp - $(CXX) $(CXXFLAGS) $(CPPFLAGS) -c -o $@ $(srcdir)/simd-checksum-x86_64.cpp - - lib/md5-asm-x86_64.o: lib/md5-asm-x86_64.s -- $(CC) -c -o $@ $(srcdir)/lib/md5-asm-x86_64.s -+ $(CC) -Wa,--noexecstack -c -o $@ $(srcdir)/lib/md5-asm-x86_64.s - - tls$(EXEEXT): $(TLS_OBJ) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(TLS_OBJ) $(LIBS) |