Skip to content

Commit

Permalink
Zlib library order fix
Browse files Browse the repository at this point in the history
For some reason, the Travis-CI build didn't cope with the library order that worked on our cluster (having -lz and -lpthread before libhts.a), so here's a test commit to see if changing their order fixes the Travis-CI build.
  • Loading branch information
YourePrettyGood committed Oct 29, 2016
1 parent 29d8f35 commit 76b9b5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/filter/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

all:
$(CC) -I../../lib/htslib/ -lz -lpthread -o lumpy_filter filter.c ../../lib/htslib/libhts.a
$(CC) -I../../lib/htslib/ -o lumpy_filter filter.c ../../lib/htslib/libhts.a -lpthread -lz

0 comments on commit 76b9b5c

Please sign in to comment.