mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-26 20:02:30 +01:00
23 lines
612 B
Diff
23 lines
612 B
Diff
add proper GNU stack markings so we dont get the default: executable
|
|
|
|
--- crc_i386.S Wed Jan 28 22:22:13 2009
|
|
+++ crc_i386.S Wed Jan 28 22:27:04 2009
|
|
@@ -302,3 +302,7 @@
|
|
#endif /* i386 || _i386 || _I386 || __i386 */
|
|
|
|
#endif /* !USE_ZLIB && !CRC_TABLE_ONLY */
|
|
+
|
|
+#if defined __ELF__ && defined __linux__
|
|
+.section .note.GNU-stack,"",@progbits
|
|
+#endif
|
|
--- match.S Wed Jan 28 22:22:13 2009
|
|
+++ match.S Wed Jan 28 22:27:04 2009
|
|
@@ -405,3 +405,7 @@
|
|
#endif /* i386 || _I386 || _i386 || __i386 */
|
|
|
|
#endif /* !USE_ZLIB */
|
|
+
|
|
+#if defined __ELF__ && defined __linux__
|
|
+.section .note.GNU-stack,"",@progbits
|
|
+#endif
|