diff options
author | kamil <kamil> | 2015-07-09 09:25:55 +0000 |
---|---|---|
committer | kamil <kamil> | 2015-07-09 09:25:55 +0000 |
commit | b32f7fe88b5327500da7904d252503fd854f5922 (patch) | |
tree | fa925bdde36ef350df3167c677e409aac9c7d2bb /devel/radare2 | |
parent | fa7c9292829ea0b34dcdb15b68690c550dd508f7 (diff) | |
download | pkgsrc-b32f7fe88b5327500da7904d252503fd854f5922.tar.gz |
Add missing entry to USE_TOOLS: pkg-config
configure tries to discover capstone (and ssl) with pkg-config.
This issue was spotted thanks to BulkTracker.
In case of missing capstone, the radare2's Makefiles tries to fetch them
with git. The missing git was the direct reason to fail during bulk builds.
This package is prepared to reuse capstone from devel/capstone and never
fetch additional dependencies, during its build, from external sources.
Reviewed by <khorben>
Diffstat (limited to 'devel/radare2')
-rw-r--r-- | devel/radare2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/radare2/Makefile b/devel/radare2/Makefile index 60a85b0a3f9..9c6bfc0a6af 100644 --- a/devel/radare2/Makefile +++ b/devel/radare2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2015/07/03 16:05:02 khorben Exp $ +# $NetBSD: Makefile,v 1.4 2015/07/09 09:25:55 kamil Exp $ .include "Makefile.common" @@ -16,7 +16,7 @@ CONFIGURE_ARGS+= --with-sysmagic CONFIGURE_ARGS+= --with-syscapstone CONFIGURE_ARGS+= --with-syszip PKGCONFIG_OVERRIDE+= pkgcfg/*.pc* -USE_TOOLS+= gmake +USE_TOOLS+= gmake pkg-config .include "options.mk" |