This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: BZ #14628: Inconsistent multi-arch setting


Hi,

This patch sets multi_arch to yes if multi-arch is enabled.  Tested on
x86-64. It is kind of obvious.  OK to install?

Thanks.

H.J.
---
diff --git a/ChangeLog b/ChangeLog
index 123f339..837c34f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2012-09-26  H.J. Lu  <hongjiu.lu@intel.com>
+
+	[BZ #14628]
+	* configure.in: Set multi_arch to yes if multi-arch is enabled. 
+	* configure: Regenerated.
+
 2012-09-26  Marek Polacek  <polacek@redhat.com>
 
 	[BZ #14530]
diff --git a/configure b/configure
index 739d2bd..1354c8c 100755
--- a/configure
+++ b/configure
@@ -4222,6 +4222,7 @@ case $sysnames_add_ons$sysnames in
   ;;
 esac
 if test x"$multi_arch" != xno; then
+  multi_arch=yes
   $as_echo "#define USE_MULTIARCH 1" >>confdefs.h
 
 fi
diff --git a/configure.in b/configure.in
index 878bf1a..95bdca4 100644
--- a/configure.in
+++ b/configure.in
@@ -720,6 +720,7 @@ case $sysnames_add_ons$sysnames in
   ;;
 esac
 if test x"$multi_arch" != xno; then
+  multi_arch=yes
   AC_DEFINE(USE_MULTIARCH)
 fi
 AC_SUBST(multi_arch)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]