diff options
author | Roel Janssen <roel@gnu.org> | 2018-04-28 01:05:58 +0200 |
---|---|---|
committer | Roel Janssen <roel@gnu.org> | 2018-04-28 01:07:15 +0200 |
commit | 4b93efec289719008a1f187ffc089585eaa93b04 (patch) | |
tree | 6b0c3b7524ce1a0072537831dddcf0b744ed1942 | |
parent | e09d74ecd2727660d77680755a01d27ffb594a2d (diff) | |
download | patches-4b93efec289719008a1f187ffc089585eaa93b04.tar patches-4b93efec289719008a1f187ffc089585eaa93b04.tar.gz |
gnu: express: Link with shared protobuf library.
* gnu/packages/bioinformatics.scm (express): Link with shared protobuf
library.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 5d83d2af8a..a7aa4362a8 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -2339,7 +2339,8 @@ dynamic programming or a variety of heuristics.") (string-append (assoc-ref inputs "bamtools") "/include/bamtools"))) (substitute* "src/CMakeLists.txt" (("\\$\\{CMAKE_CURRENT_SOURCE_DIR\\}/\\.\\./bamtools/lib") - (string-append (assoc-ref inputs "bamtools") "/lib/bamtools"))) + (string-append (assoc-ref inputs "bamtools") "/lib")) + (("libprotobuf.a") "libprotobuf.so")) #t))))) (inputs `(("boost" ,boost) |