Skip to content
Commits on Source (3)
fastdnaml (1.2.2-14) UNRELEASED; urgency=medium
fastdnaml (1.2.2-14) unstable; urgency=medium
[ Jelmer Vernooij ]
* Use secure copyright file specification URI.
* Trim trailing whitespace.
-- Jelmer Vernooij <jelmer@debian.org> Sat, 20 Oct 2018 20:47:25 +0000
[ Andreas Tille ]
* Do not hard code cc
Closes: #928790
* Standards-Version: 4.3.0
-- Andreas Tille <tille@debian.org> Sat, 11 May 2019 09:42:22 +0200
fastdnaml (1.2.2-13) unstable; urgency=medium
......
......@@ -5,7 +5,7 @@ Uploaders: Andreas Tille <tille@debian.org>,
Section: science
Priority: optional
Build-Depends: debhelper (>= 11~)
Standards-Version: 4.1.5
Standards-Version: 4.3.0
Vcs-Browser: https://salsa.debian.org/med-team/fastdnaml
Vcs-Git: https://salsa.debian.org/med-team/fastdnaml.git
Homepage: ftp://ftp.bio.indiana.edu/molbio/evolve/fastdnaml/fastDNAml.html
......
From: Helmut Grohne <helmut@subdivi.de>
Date: Sat, 11 May 2019 09:17:00 +0200
Bug-Debian: https://bugs.debian.org/928790
Description: Do not hard code cc
--- fastdnaml-1.2.2.orig/Makefile
+++ fastdnaml-1.2.2/Makefile
@@ -1,7 +1,7 @@
all: fastDNAml
fastDNAml:
- (cd source; cc ${CFLAGS} fastDNAml.c -o fastDNAml -lm ${LDFLAGS})
+ cd source && $(CC) ${CFLAGS} fastDNAml.c -o fastDNAml -lm ${LDFLAGS}
install:
install -m0755 source/fastDNAml debian/fastDNAml-util ${DESTDIR}/usr/bin
Makefile.patch
scripts.patch
hardening.patch
cross.patch