mirror of
https://github.com/ckolivas/lrzip.git
synced 2026-01-08 17:39:59 +01:00
Avoid executable stack
without this patch, the rpmlint check for executable stack failed the build on openSUSE.
This commit is contained in:
parent
d713d86af1
commit
80faeb2369
|
|
@ -138,4 +138,10 @@ MY_ENDP
|
|||
%ifidn __OUTPUT_FORMAT__,elf
|
||||
section .note.GNU-stack noalloc noexec nowrite progbits
|
||||
%endif
|
||||
%ifidn __OUTPUT_FORMAT__,elf32
|
||||
section .note.GNU-stack noalloc noexec nowrite progbits
|
||||
%endif
|
||||
%ifidn __OUTPUT_FORMAT__,elf64
|
||||
section .note.GNU-stack noalloc noexec nowrite progbits
|
||||
%endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue