diff options
author | fcambus <fcambus@pkgsrc.org> | 2020-06-11 11:10:22 +0000 |
---|---|---|
committer | fcambus <fcambus@pkgsrc.org> | 2020-06-11 11:10:22 +0000 |
commit | d7c191aa5b6de5a6a5bf1b97450f8f2e7f6e0b63 (patch) | |
tree | b781458468e85690131f849c425d1662c4e597b2 | |
parent | 22b6129f31775733220faa7d5da4866e151b435a (diff) | |
download | pkgsrc-d7c191aa5b6de5a6a5bf1b97450f8f2e7f6e0b63.tar.gz |
minisign: fix the build by adding missing build dependency on pkg-config.
Pointed out by mef@, thanks!
-rw-r--r-- | security/minisign/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/security/minisign/Makefile b/security/minisign/Makefile index d43a08718b8..09478e9145d 100644 --- a/security/minisign/Makefile +++ b/security/minisign/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2020/06/07 11:04:43 fcambus Exp $ +# $NetBSD: Makefile,v 1.3 2020/06/11 11:10:22 fcambus Exp $ DISTNAME= minisign-0.9 CATEGORIES= security @@ -10,6 +10,7 @@ COMMENT= Dead simple tool to sign files and verify signatures LICENSE= isc USE_CMAKE= yes +USE_TOOLS+= pkg-config .include "../../security/libsodium/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |