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-g3bacc7c


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  3bacc7c86f7c9f7f40de4f6a7131ee72fae59465 (commit)

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

commit 3bacc7c86f7c9f7f40de4f6a7131ee72fae59465
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Mon Dec 10 14:19:11 2012 -0800

    Support multiarch under OS directory

diff --git a/ChangeLog.pr14941 b/ChangeLog.pr14941
new file mode 100644
index 0000000..9057080
--- /dev/null
+++ b/ChangeLog.pr14941
@@ -0,0 +1,5 @@
+2012-12-10  H.J. Lu  <hongjiu.lu@intel.com>
+
+	[BZ #14941]
+	* configure.in: Add m0sub and msub for multiarch check.
+	* configure: Regenerated.
diff --git a/configure b/configure
index 8799b7d..bf73d05 100755
--- a/configure
+++ b/configure
@@ -4347,36 +4347,40 @@ sysnames_add_ons=
 sysnames=
 for b in $base ''; do
   for m0 in $mach ''; do
-    for v in /$vendor ''; do
-      test "$v" = / && continue
-      for o in /$ostry ''; do
-	test "$o" = / && continue
-	for m in $multi_arch_d $mach ''; do
-	  for d in $add_ons_pfx ''; do
-	    for a in $add_ons_sfx ''; do
-	      if test -n "$m0$m0sub$b$v$o$m$msub"; then
-		try_srcdir="${srcdir}/"
-		case "$d" in
-		/*) try_srcdir= ;;
-		esac
-		try="${d}sysdeps$m0$m0sub$b$v$o$m$msub$a"
-		test -n "$enable_debug_configure" &&
-		echo "$0 DEBUG: try $try" >&2
-		if test -d "$try_srcdir$try"; then
-		  sysnames="$sysnames $try"
-		  { test -n "$o" || test -n "$b"; } && os_used=t
-		  { test -n "$m" || test -n "$m0"; } && machine_used=t
-		  case x${m0:-$m} in
-		  x*/$submachine) submachine_used=t ;;
-		  esac
-		  if test -n "$d"; then
-		    case "$sysnames_add_ons" in
-		    *" $d "*) ;;
-		    *|'') sysnames_add_ons="$sysnames_add_ons $d" ;;
+    for m0sub in $mach ''; do
+      for v in /$vendor ''; do
+	test "$v" = / && continue
+	for o in /$ostry ''; do
+	  test "$o" = / && continue
+	  for m in $multi_arch_d $mach ''; do
+	    for msub in $multi_arch_d $mach ''; do
+	      for d in $add_ons_pfx ''; do
+		for a in $add_ons_sfx ''; do
+		  if test -n "$m0$m0sub$b$v$o$m$msub"; then
+		    try_srcdir="${srcdir}/"
+		    case "$d" in
+		    /*) try_srcdir= ;;
 		    esac
-		  fi
-		fi
-	      fi
+		    try="${d}sysdeps$m0$m0sub$b$v$o$m$msub$a"
+		    test -n "$enable_debug_configure" &&
+		    echo "$0 DEBUG: try $try" >&2
+		    if test -d "$try_srcdir$try"; then
+		      sysnames="$sysnames $try"
+		      { test -n "$o" || test -n "$b"; } && os_used=t
+		      { test -n "$m" || test -n "$m0"; } && machine_used=t
+		      case x${m0:-$m} in
+		      x*/$submachine) submachine_used=t ;;
+		      esac
+		      if test -n "$d"; then
+			case "$sysnames_add_ons" in
+			*" $d "*) ;;
+			*|'') sysnames_add_ons="$sysnames_add_ons $d" ;;
+			esac
+		      fi
+		    fi
+	          fi
+		done
+	      done
 	    done
 	  done
 	done
diff --git a/configure.in b/configure.in
index d369382..e0f391d 100644
--- a/configure.in
+++ b/configure.in
@@ -695,36 +695,40 @@ sysnames_add_ons=
 sysnames=
 for b in $base ''; do
   for m0 in $mach ''; do
-    for v in /$vendor ''; do
-      test "$v" = / && continue
-      for o in /$ostry ''; do
-	test "$o" = / && continue
-	for m in $multi_arch_d $mach ''; do
-	  for d in $add_ons_pfx ''; do
-	    for a in $add_ons_sfx ''; do
-	      if test -n "$m0$m0sub$b$v$o$m$msub"; then
-		try_srcdir="${srcdir}/"
-		case "$d" in
-		/*) try_srcdir= ;;
-		esac
-		try="${d}sysdeps$m0$m0sub$b$v$o$m$msub$a"
-		test -n "$enable_debug_configure" &&
-		echo "$0 [DEBUG]: try $try" >&2
-		if test -d "$try_srcdir$try"; then
-		  sysnames="$sysnames $try"
-		  { test -n "$o" || test -n "$b"; } && os_used=t
-		  { test -n "$m" || test -n "$m0"; } && machine_used=t
-		  case x${m0:-$m} in
-		  x*/$submachine) submachine_used=t ;;
-		  esac
-		  if test -n "$d"; then
-		    case "$sysnames_add_ons" in
-		    *" $d "*) ;;
-		    *|'') sysnames_add_ons="$sysnames_add_ons $d" ;;
+    for m0sub in $mach ''; do
+      for v in /$vendor ''; do
+	test "$v" = / && continue
+	for o in /$ostry ''; do
+	  test "$o" = / && continue
+	  for m in $multi_arch_d $mach ''; do
+	    for msub in $multi_arch_d $mach ''; do
+	      for d in $add_ons_pfx ''; do
+		for a in $add_ons_sfx ''; do
+		  if test -n "$m0$m0sub$b$v$o$m$msub"; then
+		    try_srcdir="${srcdir}/"
+		    case "$d" in
+		    /*) try_srcdir= ;;
 		    esac
-		  fi
-		fi
-	      fi
+		    try="${d}sysdeps$m0$m0sub$b$v$o$m$msub$a"
+		    test -n "$enable_debug_configure" &&
+		    echo "$0 [DEBUG]: try $try" >&2
+		    if test -d "$try_srcdir$try"; then
+		      sysnames="$sysnames $try"
+		      { test -n "$o" || test -n "$b"; } && os_used=t
+		      { test -n "$m" || test -n "$m0"; } && machine_used=t
+		      case x${m0:-$m} in
+		      x*/$submachine) submachine_used=t ;;
+		      esac
+		      if test -n "$d"; then
+			case "$sysnames_add_ons" in
+			*" $d "*) ;;
+			*|'') sysnames_add_ons="$sysnames_add_ons $d" ;;
+			esac
+		      fi
+		    fi
+	          fi
+		done
+	      done
 	    done
 	  done
 	done

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


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]