diff options
author | David Naylor <dbn@FreeBSD.org> | 2017-06-18 18:09:16 +0000 |
---|---|---|
committer | David Naylor <dbn@FreeBSD.org> | 2017-06-18 18:09:16 +0000 |
commit | 9920d3ae657e820bce42911009136fc059210d0d (patch) | |
tree | 237480885bd130394dbcbc56f765540bba4416e2 /security | |
parent | 4aeae92375bb57620d054d3cc88677ebba4f22bf (diff) |
qa: add check for NO_ARCH
If NO_ARCH is set then check that no FreeBSD elf(5) files are in $STAGEDIR.
If an elf(5) file is bundles as part of the package, but is not meant to be
run directly (i.e. the elf(5) file is a payload, and not compiled) then
those files can be added to NO_ARCH_IGNORE to avoid the check from failing,
Changes to ports:
- Ports that have NO_ARCH set, but actually compile files have had NO_ARCH
removed.
- Ports that have elf(5) payloads have had those files added to
NO_ARCH_IGNORE.
- R-cran ports that do not set USES=cran:compiles have NO_ARCH set,
PR: 218976
Reviewed by: antoine, mat
Approved by: portmgr
Notes
Notes:
svn path=/head/; revision=443845
Diffstat (limited to 'security')
-rw-r--r-- | security/metasploit/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/security/metasploit/Makefile b/security/metasploit/Makefile index 1cb9c970ce02..a77b7ccca51a 100644 --- a/security/metasploit/Makefile +++ b/security/metasploit/Makefile @@ -80,6 +80,7 @@ GH_ACCOUNT= rapid7 GH_PROJECT= metasploit-framework NO_ARCH= yes +NO_ARCH_IGNORE= template_x64_bsd.bin template_x86_bsd.bin CVE-2013-2171.bin STRIP= USE_RUBY= yes |