1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: Use libhts-dev from the archive
The upstream repo includes htslib as a submodule that gets
built with the delly code. This patch changes this to use
Debian's shared libhts from the archive.
This was done inorder to make the builds reproducible
Author: Mohammed Bilal <mdbilal@disroot.org>>
Forwarded: not-needed
Last-Update: 2022-08-11
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@
# Submodules
PWD = $(shell pwd)
-EBROOTHTSLIB ?= ${PWD}/src/htslib/
+EBROOTHTSLIB ?= /usr/include/htslib/
# Install dir
prefix = ${PWD}
|