[Glibc-bsd-commits] r5955 - trunk/kfreebsd-10/debian

stevenc-guest at alioth.debian.org stevenc-guest at alioth.debian.org
Sun Mar 20 16:24:03 UTC 2016


Author: stevenc-guest
Date: 2016-03-20 16:24:03 +0000 (Sun, 20 Mar 2016)
New Revision: 5955

Modified:
   trunk/kfreebsd-10/debian/changelog
   trunk/kfreebsd-10/debian/rules
Log:
On arches that don't use Clang, Build-Depend on gcc-5
rather than gcc-4.9 (Closes: #818777)


Modified: trunk/kfreebsd-10/debian/changelog
===================================================================
--- trunk/kfreebsd-10/debian/changelog	2016-03-20 10:37:01 UTC (rev 5954)
+++ trunk/kfreebsd-10/debian/changelog	2016-03-20 16:24:03 UTC (rev 5955)
@@ -3,6 +3,8 @@
   * New upstream snapshot of 10.3-RC3
   * Amend svn_revision regex to support local suffixes
     (Thanks, Jon Boden) (Closes: #818700)
+  * On arches that don't use Clang, Build-Depend on gcc-5
+    rather than gcc-4.9 (Closes: #818777)
 
  -- Steven Chamberlain <steven at pyro.eu.org>  Sat, 19 Mar 2016 20:49:47 +0000
 

Modified: trunk/kfreebsd-10/debian/rules
===================================================================
--- trunk/kfreebsd-10/debian/rules	2016-03-20 10:37:01 UTC (rev 5954)
+++ trunk/kfreebsd-10/debian/rules	2016-03-20 16:24:03 UTC (rev 5955)
@@ -63,12 +63,12 @@
 clang_cpus	:= i386 amd64 arm
 
 cc_pkg		:= clang-3.5 [$(foreach cpu,$(clang_cpus),any-$(cpu))], \
-		gcc-4.9 [$(foreach cpu,$(clang_cpus),!any-$(cpu))]
+		gcc-5 [$(foreach cpu,$(clang_cpus),!any-$(cpu))]
 
 ifneq (, $(filter $(clang_cpus), $(DEB_HOST_ARCH_CPU)))
 cc_cmd		:= clang-3.5
 else
-cc_cmd		:= gcc-4.9
+cc_cmd		:= gcc-5
 endif
 
 ifeq ($(cc_cmd), clang)




More information about the Glibc-bsd-commits mailing list