aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/patches/bcftools-regidx-unsigned-char.patch
diff options
context:
space:
mode:
authorRoel Janssen <roel@gnu.org>2018-04-27 01:05:18 +0200
committerRoel Janssen <roel@gnu.org>2018-04-27 01:11:42 +0200
commitcbd9f91c326f5f57fb9dd4374069b215e2e7a5f6 (patch)
tree13ce0a19b17498434a2c17fb92593e2ebc69a1d0 /gnu/packages/patches/bcftools-regidx-unsigned-char.patch
parent8df0267ad4cef8e86ac34a8e3b95cd1ef6177efb (diff)
downloadguix-cbd9f91c326f5f57fb9dd4374069b215e2e7a5f6.tar
guix-cbd9f91c326f5f57fb9dd4374069b215e2e7a5f6.tar.gz
gnu: bcftools: Update to 1.8.
* gnu/packages/bioinformatics.scm (bcftools): Update to 1.8. * gnu/local.mk: Remove patch. * gnu/packages/patches/bcftools-regidx-unsigned-char.patch: Remove file.
Diffstat (limited to 'gnu/packages/patches/bcftools-regidx-unsigned-char.patch')
-rw-r--r--gnu/packages/patches/bcftools-regidx-unsigned-char.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/gnu/packages/patches/bcftools-regidx-unsigned-char.patch b/gnu/packages/patches/bcftools-regidx-unsigned-char.patch
deleted file mode 100644
index af5bc160f5..0000000000
--- a/gnu/packages/patches/bcftools-regidx-unsigned-char.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Description: Fix test-regidx argument parsing on archs with unsigned char
- On architectures where char is unsigned "c >= 0" was always true.
-Author: Adrian Bunk <bunk@debian.org>
-Bug-Debian: https://bugs.debian.org/865060
-
---- a/test/test-regidx.c
-+++ b/test/test-regidx.c
-@@ -336,7 +336,7 @@
- {"seed",1,0,'s'},
- {0,0,0,0}
- };
-- char c;
-+ int c;
- int seed = (int)time(NULL);
- while ((c = getopt_long(argc, argv, "hvs:",loptions,NULL)) >= 0)
- {