diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-04-06 12:19:25 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-04-06 12:20:29 +0200 |
commit | fca662373327809ec4766009f08e371bc3979f91 (patch) | |
tree | e939ea0673806c1ee8a89ecc2768a62129a03b84 | |
parent | 2a8df9e1b47e60b9d75d687d1255874185214f03 (diff) | |
download | aports-fca662373327809ec4766009f08e371bc3979f91.tar.bz2 aports-fca662373327809ec4766009f08e371bc3979f91.tar.xz |
testing/emscripten-fastcomp: fix so names conflict with llvm pkg
ERROR: unsatisfiable constraints:
emscripten-fastcomp-1.37.9-r0:
conflicts: llvm-3.8.1-r2[so:BugpointPasses.so=0]
satisfies: world[emscripten-fastcomp]
llvm-3.8.1-r2:
conflicts: emscripten-fastcomp-1.37.9-r0[so:BugpointPasses.so=0]
satisfies: world[llvm]
-rw-r--r-- | testing/emscripten-fastcomp/APKBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/testing/emscripten-fastcomp/APKBUILD b/testing/emscripten-fastcomp/APKBUILD index 70a744582b..0ef0cb0fff 100644 --- a/testing/emscripten-fastcomp/APKBUILD +++ b/testing/emscripten-fastcomp/APKBUILD @@ -8,7 +8,7 @@ pkgname=emscripten-fastcomp # Keep in sync with package emscripten! pkgver=1.37.9 -pkgrel=0 +pkgrel=1 pkgdesc="The Clang + LLVM backend for Emscripten" url="https://kripken.github.io/emscripten-site/" arch="all" @@ -24,6 +24,8 @@ options="!check" # some tests are broken, don't bother with it for now _prefix="/usr/lib/$pkgname" ldpath="$_prefix/lib" +# Avoid conflicts in provided so:* names with llvm package. +sonameprefix="$pkgname:" prepare() { ln -sf ../../$pkgname-clang-$pkgver "$builddir"/tools/clang |