From 8698aab584a5533b6c1e0dceff45f376e78a2b5b Mon Sep 17 00:00:00 2001 From: Calvin Hill Date: Sat, 21 Jan 2017 15:30:02 +0000 Subject: [PATCH] capstone: fix x86 build (#1091) --- dev-util/capstone/capstone-3.0.4.recipe | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dev-util/capstone/capstone-3.0.4.recipe b/dev-util/capstone/capstone-3.0.4.recipe index d6717993d..d8c43acab 100644 --- a/dev-util/capstone/capstone-3.0.4.recipe +++ b/dev-util/capstone/capstone-3.0.4.recipe @@ -18,7 +18,7 @@ LICENSE="BSD (3-clause)" COPYRIGHT="2013-2015, COSEINC" REVISION="1" -ARCHITECTURES="?x86" +ARCHITECTURES="x86" SECONDARY_ARCHITECTURES="x86" SOURCE_URI="https://github.com/aquynh/capstone/archive/$portVersion.tar.gz" @@ -54,13 +54,15 @@ BUILD_PREREQUIRES=" BUILD() { - ./make.sh default LIBDIRARCH=$relativeLibDir + export LIBDIRARCH=$relativeLibDir + ./make.sh default } INSTALL() { export PREFIX=$prefix - ./make.sh install LIBDIRARCH=$relativeLibDir + export LIBDIRARCH=$relativeLibDir + ./make.sh install prepareInstalledDevelLib libcapstone fixPkgconfig packageEntries devel $developDir