diff options
author | tnn <tnn@pkgsrc.org> | 2022-01-09 23:42:02 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2022-01-09 23:42:02 +0000 |
commit | 8ed0f32c149c5017ff1de8dd94f366dc36a0fb45 (patch) | |
tree | 0613e459e5e51f68286bd3a6f4714eaf01f4d81e /security | |
parent | ccad14e960fc3cc88e00f311403cbc5d0b6167e4 (diff) | |
download | pkgsrc-8ed0f32c149c5017ff1de8dd94f366dc36a0fb45.tar.gz |
Fix packages that use GITSUB_MODULES on SunOS and possibly others
This is annoying, but for now we must always explicitly combine
GITHUB_SUBMODULES with EXTRACT_USING+=bsdtar.
This is because mk/fetch/github.mk uses OPTS_TAR=--strip-components=1
and that is not supported by nbtar(pax), which is the default pkgsrc
tar on some platforms. We cannot override EXTRACT_USING in github.mk
because that is too late.
We should switch all platforms to bsdtar and retire pax.
Diffstat (limited to 'security')
-rw-r--r-- | security/pam_ssh_agent_auth/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/security/pam_ssh_agent_auth/Makefile b/security/pam_ssh_agent_auth/Makefile index 743bfd4789b..40e146e733c 100644 --- a/security/pam_ssh_agent_auth/Makefile +++ b/security/pam_ssh_agent_auth/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2021/05/14 11:52:15 nia Exp $ +# $NetBSD: Makefile,v 1.12 2022/01/09 23:42:03 tnn Exp $ DISTNAME= pam_ssh_agent_auth-0.10.4 CATEGORIES= security @@ -14,6 +14,7 @@ GNU_CONFIGURE= yes USE_TOOLS+= pod2man GITHUB_SUBMODULES+= floodyberry ed25519-donna 8757bd4cd209cb032853ece0ce413f122eef212c ed25519-donna +EXTRACT_USING= bsdtar CONFIGURE_ARGS+= --without-openssl-header-check |