diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2015-10-01 16:01:38 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-10-13 13:47:03 +0200 |
commit | e16d1f71301a80e5ea4891b077d5fee36a6354fa (patch) | |
tree | 3ef79e7ac840d684b98929b0c79186b7c21ce6bc | |
parent | 54d8915b29fbb7f96d83bba19ecf1a21b1ef6354 (diff) | |
download | ast2050-yocto-openembedded-e16d1f71301a80e5ea4891b077d5fee36a6354fa.zip ast2050-yocto-openembedded-e16d1f71301a80e5ea4891b077d5fee36a6354fa.tar.gz |
llvm.inc: fix PACKAGES_DYNAMIC
* all dynamically created packages start with libllvm${LLVM_RELEASE}-
libllvm${LLVM_RELEASE}-%s-dbg
libllvm${LLVM_RELEASE}-%s
libllvm${LLVM_RELEASE}-%s-staticdev
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-core/llvm/llvm.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-core/llvm/llvm.inc b/meta-oe/recipes-core/llvm/llvm.inc index 26bac33..e42f3d7 100644 --- a/meta-oe/recipes-core/llvm/llvm.inc +++ b/meta-oe/recipes-core/llvm/llvm.inc @@ -125,7 +125,7 @@ FILES_${PN}-dev = "${bindir}/${LLVM_DIR} \ ${libdir}/${LLVM_DIR}/LLVMHello.so \ " -PACKAGES_DYNAMIC = "^libllvm-.*$" +PACKAGES_DYNAMIC = "^libllvm${LLVM_RELEASE}-.*$" INSANE_SKIP_libllvm${LLVM_RELEASE}-llvm-${LLVM_RELEASE} += "dev-so" |