[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

r5827 - glibc-package/branches/eglibc-2.18/debian



Author: adconrad
Date: 2013-11-30 03:24:40 +0000 (Sat, 30 Nov 2013)
New Revision: 5827

Modified:
   glibc-package/branches/eglibc-2.18/debian/changelog
   glibc-package/branches/eglibc-2.18/debian/rules
Log:
debian/rules: Build for i586 where dpkg-architecture claims i486, which
matches the default that gcc-4.8 has had on i386 for the last two years.

Modified: glibc-package/branches/eglibc-2.18/debian/changelog
===================================================================
--- glibc-package/branches/eglibc-2.18/debian/changelog	2013-11-29 23:10:15 UTC (rev 5826)
+++ glibc-package/branches/eglibc-2.18/debian/changelog	2013-11-30 03:24:40 UTC (rev 5827)
@@ -81,6 +81,8 @@
   * debian/patches/arm64/cvs-arm64-ifunc.diff: Enable arm64 IFUNC support.
   * debian/{control.in/main,rules,sysdeps/*}: Switch to using gcc-4.8 on all
     architectures as gcc-4.6 and gcc-4.7 are going away in the near future.
+  * debian/rules: Build for i586 where dpkg-architecture claims i486, which
+    matches the default that gcc-4.8 has had on i386 for the last two years.
 
   [ Samuel Thibault ]
   * patches/hurd-i386/libpthread_hurd_cond_timedwait.diff: Rebased.

Modified: glibc-package/branches/eglibc-2.18/debian/rules
===================================================================
--- glibc-package/branches/eglibc-2.18/debian/rules	2013-11-29 23:10:15 UTC (rev 5826)
+++ glibc-package/branches/eglibc-2.18/debian/rules	2013-11-30 03:24:40 UTC (rev 5827)
@@ -117,7 +117,8 @@
 BUILD_CFLAGS = -O2 -g
 HOST_CFLAGS = -pipe -O2 -fstrict-aliasing -g $(call xx,extra_cflags)
 
-configure_target := $(DEB_HOST_GNU_TYPE)
+# This subst can go away when dpkg-dev starts reporting i586 instead of i486
+configure_target := $(subst i486,i586,$(DEB_HOST_GNU_TYPE))
 
 # Normally we'll just use this for --build.  If the architecture requires
 # that build daemons be able to run a particular optimized library, then


Reply to: