Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
Do not hard code cc
· 84c30153
Andreas Tille
authored
May 11, 2019
84c30153
Standards-Version: 4.3.0
· c04ff1dc
Andreas Tille
authored
May 11, 2019
c04ff1dc
Upload to unstable
· 6bd6e864
Andreas Tille
authored
May 11, 2019
6bd6e864
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
6bd6e864
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
...
...
debian/control
View file @
6bd6e864
...
...
@@ -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
...
...
debian/patches/cross.patch
0 → 100644
View file @
6bd6e864
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
debian/patches/series
View file @
6bd6e864
Makefile.patch
scripts.patch
hardening.patch
cross.patch