Package: fastdnaml / 1.2.2-14

cross.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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