[llvm-commits] [llvm-gcc-4.2] r122055 - in /llvm-gcc-4.2/trunk/gcc: configure configure.ac

Bill Wendling isanbard at gmail.com
Fri Dec 17 04:13:20 PST 2010


Author: void
Date: Fri Dec 17 06:13:20 2010
New Revision: 122055

URL: http://llvm.org/viewvc/llvm-project?rev=122055&view=rev
Log:
Use tabs and spaces in the pattern instead of just spaces.

Modified:
    llvm-gcc-4.2/trunk/gcc/configure
    llvm-gcc-4.2/trunk/gcc/configure.ac

Modified: llvm-gcc-4.2/trunk/gcc/configure
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/configure?rev=122055&r1=122054&r2=122055&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/configure (original)
+++ llvm-gcc-4.2/trunk/gcc/configure Fri Dec 17 06:13:20 2010
@@ -18551,14 +18551,14 @@
       # glibc 2.4 and later provides __stack_chk_fail and
       # either __stack_chk_guard, or TLS access to stack guard canary.
       if test -f $glibc_header_dir/features.h \
-         && $EGREP '^[       ]*#[         ]*define[       ]+__GNU_LIBRARY__[      ]+([1-9][0-9]|[6-9])' \
+         && $EGREP '^[	 ]*#[	 ]*define[	 ]+__GNU_LIBRARY__[	 ]+([1-9][0-9]|[6-9])' \
             $glibc_header_dir/features.h > /dev/null; then
-        if $EGREP '^[        ]*#[         ]*define[       ]+__GLIBC__[    ]+([1-9][0-9]|[3-9])' \
+        if $EGREP '^[	 ]*#[	 ]*define[	 ]+__GLIBC__[	 ]+([1-9][0-9]|[3-9])' \
            $glibc_header_dir/features.h > /dev/null; then
           gcc_cv_libc_provides_ssp=yes
-        elif $EGREP '^[      ]*#[         ]*define[       ]+__GLIBC__[    ]+2' \
+        elif $EGREP '^[	 ]*#[	 ]*define[	 ]+__GLIBC__[	 ]+2' \
              $glibc_header_dir/features.h > /dev/null \
-             && $EGREP '^[   ]*#[         ]*define[       ]+__GLIBC_MINOR__[      ]+([1-9][0-9]|[4-9])' \
+             && $EGREP '^[	 ]*#[	 ]*define[	 ]+__GLIBC_MINOR__[	 ]+([1-9][0-9]|[4-9])' \
              $glibc_header_dir/features.h > /dev/null; then
           gcc_cv_libc_provides_ssp=yes
         fi

Modified: llvm-gcc-4.2/trunk/gcc/configure.ac
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/configure.ac?rev=122055&r1=122054&r2=122055&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/configure.ac (original)
+++ llvm-gcc-4.2/trunk/gcc/configure.ac Fri Dec 17 06:13:20 2010
@@ -3348,14 +3348,14 @@
       # glibc 2.4 and later provides __stack_chk_fail and
       # either __stack_chk_guard, or TLS access to stack guard canary.
       if test -f $glibc_header_dir/features.h \
-         && $EGREP '^@<:@       @:>@*#[         ]*define[       ]+__GNU_LIBRARY__[      ]+([1-9][0-9]|[6-9])' \
+         && $EGREP '^@<:@	 @:>@*#[	 ]*define[	 ]+__GNU_LIBRARY__[	 ]+([1-9][0-9]|[6-9])' \
             $glibc_header_dir/features.h > /dev/null; then
-        if $EGREP '^@<:@        @:>@*#[         ]*define[       ]+__GLIBC__[    ]+([1-9][0-9]|[3-9])' \
+        if $EGREP '^@<:@	 @:>@*#[	 ]*define[	 ]+__GLIBC__[	 ]+([1-9][0-9]|[3-9])' \
            $glibc_header_dir/features.h > /dev/null; then
           gcc_cv_libc_provides_ssp=yes
-        elif $EGREP '^@<:@      @:>@*#[         ]*define[       ]+__GLIBC__[    ]+2' \
+        elif $EGREP '^@<:@	 @:>@*#[	 ]*define[	 ]+__GLIBC__[	 ]+2' \
              $glibc_header_dir/features.h > /dev/null \
-             && $EGREP '^@<:@   @:>@*#[         ]*define[       ]+__GLIBC_MINOR__[      ]+([1-9][0-9]|[4-9])' \
+             && $EGREP '^@<:@	 @:>@*#[	 ]*define[	 ]+__GLIBC_MINOR__[	 ]+([1-9][0-9]|[4-9])' \
              $glibc_header_dir/features.h > /dev/null; then
           gcc_cv_libc_provides_ssp=yes
         fi





More information about the llvm-commits mailing list