New comment by Duncaen on void-packages repository https://github.com/void-linux/void-packages/pull/20656#issuecomment-610017607 Comment: ```diff diff --git a/srcpkgs/pam_ssh_agent_auth/template b/srcpkgs/pam_ssh_agent_auth/template index 69eef66042..786bd720c6 100644 --- a/srcpkgs/pam_ssh_agent_auth/template +++ b/srcpkgs/pam_ssh_agent_auth/template @@ -2,10 +2,9 @@ pkgname=pam_ssh_agent_auth version=0.10.3 revision=1 -archs="i686 x86_64" build_style=gnu-configure -make_build_args="LD=gcc" -makedepends="libressl-devel pam-devel perl" +hostmakedepends="perl" +makedepends="libressl-devel pam-devel" short_desc="PAM module providing authentication through a ssh agent" maintainer="Iskander Zemmouri " license="MIT" @@ -13,6 +12,11 @@ homepage="http://pamsshagentauth.sourceforge.net/" distfiles="${SOURCEFORGE_SITE}/pamsshagentauth/${pkgname}-${version}.tar.bz2" checksum=3c53d358d6eaed1b211239df017c27c6f9970995d14102ae67bae16d4f47a763 +post_extract() { + vsed -e '/^AR=/d' -i Makefile.in -i openbsd-compat/Makefile.in + vsed -e 's/^LD=.*/LD=$(CC)/' -i Makefile.in +} + do_install() { vman pam_ssh_agent_auth.8 vmkdir /usr/lib/security ```