This is the mail archive of the glibc-cvs@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]

GNU C Library master sources branch hjl/pr14941 created. glibc-2.16-ports-merge-863-gef4df69


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, hjl/pr14941 has been created
        at  ef4df693e6c473fb460eca42149d8242c8807cd9 (commit)

- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=ef4df693e6c473fb460eca42149d8242c8807cd9

commit ef4df693e6c473fb460eca42149d8242c8807cd9
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Mon Dec 10 10:18:44 2012 -0800

    Also check x86/multiarch for i386 and x86_64

diff --git a/ChangeLog.pr14941 b/ChangeLog.pr14941
new file mode 100644
index 0000000..16b041a
--- /dev/null
+++ b/ChangeLog.pr14941
@@ -0,0 +1,5 @@
+2012-12-10  H.J. Lu  <hongjiu.lu@intel.com>
+
+	[BZ #14941]
+	* configure.in: Also check x86/multiarch for i386 and x86_64.
+	* configure: Regenerated.
diff --git a/configure b/configure
index 8799b7d..3e2a4c8 100755
--- a/configure
+++ b/configure
@@ -4341,6 +4341,13 @@ while m=`echo $tail | sed 's@^\(.*\)/\([^/]*\)$@& \1@'`; test -n "$m"; do
   tail="$2"
 done
 
+# Add /x86 for i386 and x86_64.
+case "$base_machine" in
+  i[[34567]]86 | x86_64)
+    mach="$mach /x86"
+    ;;
+esac
+
 
 # Find what sysdep directories exist.
 sysnames_add_ons=
diff --git a/configure.in b/configure.in
index d369382..4e26131 100644
--- a/configure.in
+++ b/configure.in
@@ -687,6 +687,13 @@ while m=`echo $tail | sed 's@^\(.*\)/\([^/]*\)$@& \1@'`; test -n "$m"; do
   tail="$2"
 done
 
+# Add /x86 for i386 and x86_64.
+case "$base_machine" in
+  i[[34567]]86 | x86_64)
+    mach="$mach /x86"
+    ;;
+esac
+
 dnl We are done with glob and regexp uses of [ and ]; return to autoconf.
 changequote([,])dnl
 

-----------------------------------------------------------------------


hooks/post-receive
-- 
GNU C Library master sources


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