diff options
author | grant <grant@pkgsrc.org> | 2003-09-22 00:56:48 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-09-22 00:56:48 +0000 |
commit | 16dbb5f911098d2a45e7a05e42091a7b576ceadf (patch) | |
tree | e39eb33c0fd76700b45f58813c7e735de42c044d /security/skey | |
parent | 9b2e91b50dfa6f020616828521b7ddf808d7ac99 (diff) | |
download | pkgsrc-16dbb5f911098d2a45e7a05e42091a7b576ceadf.tar.gz |
run ranlib over libskey.a in post-install, to appease Darwin's linker
Diffstat (limited to 'security/skey')
-rw-r--r-- | security/skey/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/security/skey/Makefile b/security/skey/Makefile index 8a9ae844b33..17b334abaa9 100644 --- a/security/skey/Makefile +++ b/security/skey/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2003/07/23 16:03:55 salo Exp $ +# $NetBSD: Makefile,v 1.6 2003/09/22 00:56:48 grant Exp $ # DISTNAME= skey-1.1.5 @@ -19,6 +19,9 @@ GNU_CONFIGURE= YES CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} +post-install: + ${RANLIB} ${PREFIX}/lib/libskey.a + .include "../../lang/perl5/buildlink2.mk" .include "../../mk/bsd.pkg.mk" |