[med-svn] [Git][med-team/king-probe][master] Do not hard code the build architecture compiler
Andreas Tille
gitlab at salsa.debian.org
Mon May 25 10:41:55 BST 2020
Andreas Tille pushed to branch master at Debian Med / king-probe
Commits:
ce97ecfc by Andreas Tille at 2020-05-25T11:36:36+02:00
Do not hard code the build architecture compiler
- - - - -
3 changed files:
- debian/changelog
- + debian/patches/cross.patch
- debian/patches/series
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,10 @@
+king-probe (2.16.160404+git20200121.9b198c1-2) UNRELEASED; urgency=medium
+
+ * Do not hard code the build architecture compiler
+ Closes: #961467
+
+ -- Andreas Tille <tille at debian.org> Mon, 25 May 2020 11:34:46 +0200
+
king-probe (2.16.160404+git20200121.9b198c1-1) unstable; urgency=medium
* Team upload.
=====================================
debian/patches/cross.patch
=====================================
@@ -0,0 +1,35 @@
+From: Helmut Grohne <helmut at subdivi.de>
+Date: Sun, 24 May 2020 14:11:49 +0200
+Bug-Debian: https://bugs.debian.org/961467
+Description: Do not hard code the build architecture compiler
+
+--- a/Makefile
++++ b/Makefile
+@@ -5,10 +5,10 @@ OBJLIST = dots.o abin.o readPDBrecs.o ge
+ parse.o atomprops.o stdconntable.o autobondrot.o hybrid_36_c.o
+
+ .c.o:
+- cc -c $*.c $(CFLAGS)
++ $(CC) -c $*.c $(CFLAGS)
+
+ probe: probe.o $(OBJLIST)
+- cc -o $@ probe.o $(OBJLIST) $(LFLAGS)
++ $(CC) -o $@ probe.o $(OBJLIST) $(LFLAGS)
+
+ clean:
+ @rm -f *.o *.ckp
+--- a/Makefile.linux
++++ b/Makefile.linux
+@@ -5,10 +5,10 @@ OBJLIST = dots.o abin.o readPDBrecs.o ge
+ parse.o atomprops.o stdconntable.o autobondrot.o hybrid_36_c.o
+
+ .c.o:
+- cc -c $*.c $(CFLAGS)
++ $(CC) -c $*.c $(CFLAGS)
+
+ probe: probe.o $(OBJLIST)
+- cc -o $@ probe.o $(OBJLIST) $(LFLAGS) $(LDFLAGS)
++ $(CC) -o $@ probe.o $(OBJLIST) $(LFLAGS) $(LDFLAGS)
+
+ clean:
+ @rm -f *.o *.ckp
=====================================
debian/patches/series
=====================================
@@ -1,2 +1,3 @@
fix_build_issue.patch
compiler_flags.patch
+cross.patch
View it on GitLab: https://salsa.debian.org/med-team/king-probe/-/commit/ce97ecfcbd1fec73c66fd268c745446ef339b266
--
View it on GitLab: https://salsa.debian.org/med-team/king-probe/-/commit/ce97ecfcbd1fec73c66fd268c745446ef339b266
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-med-commit/attachments/20200525/c3d2a393/attachment-0001.html>
More information about the debian-med-commit
mailing list