diff mbox

Fix typo

Message ID miogtv$dk$1@ger.gmane.org
State New
Headers show

Commit Message

Paulo J. Matos May 10, 2015, 9 p.m. UTC
OK to commit?

    2015-05-10  Paulo Matos  <paulo@matos-sorge.com>  
      
        * configure.ac: Fix typo.  
        * configure: Regenerate.  
  
+      AC_MSG_ERROR([I suspect your system does not have 32-bit 
development libraries (libc and headers). If you have them, rerun 
configure with --enable-multilib. If you do not have them, and want to 
build a 64-bit-only compiler, rerun configure with --disable-multilib.])
     fi
     ;;
 esac

Comments

Jeff Law May 11, 2015, 4:07 a.m. UTC | #1
On 05/10/2015 03:00 PM, Paulo Matos wrote:
> OK to commit?
>
>      2015-05-10  Paulo Matos  <paulo@matos-sorge.com>
>
>          * configure.ac: Fix typo.
>          * configure: Regenerate.
Yes.  This would fall under the obvious rule and can be committed 
without waiting for approvals.

jeff
Paulo J. Matos May 11, 2015, 6:14 p.m. UTC | #2
On Sun, 10 May 2015 22:07:53 -0600, Jeff Law wrote:

> On 05/10/2015 03:00 PM, Paulo Matos wrote:
> Yes.  This would fall under the obvious rule and can be committed
> without waiting for approvals.
> 
> jeff

Thanks. Committed.
diff mbox

Patch

diff --git a/configure b/configure  
index a3f66ba..8ee279f 100755  
--- a/configure  
+++ b/configure  
@@ -7423,7 +7423,7 @@  fi  
 # multilib is not explicitly enabled.  
 case "$target:$have_compiler:$host:$target:$enable_multilib" in  
   x86_64-*linux*:yes:$build:$build:)  
-    # Make sure we have a developement environment that handles 32-bit  
+    # Make sure we have a development environment that handles 32-bit  
     dev64=no  
     echo "int main () { return 0; }" > conftest.c  
     ${CC} -m32 -o conftest ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} conftest.c  
@@ -7434,7 +7434,7 @@  case "$target:$have_compiler:$host:$target:
$enable_multilib" in  
     fi  
     rm -f conftest*  
     if test x${dev64} != xyes ; then  
-      as_fn_error "I suspect your system does not have 32-bit 
developement libraries (libc and headers). If you have them, rerun 
configure with --enable-multilib. If you do not have them, and want to 
build a 64-bit-only compiler, rerun configure with --disable-multilib." 
"$LINENO" 5
+      as_fn_error "I suspect your system does not have 32-bit 
development libraries (libc and headers). If you have them, rerun 
configure with --enable-multilib. If you do not have them, and want to 
build a 64-bit-only compiler, rerun configure with --disable-multilib." 
"$LINENO" 5
     fi
     ;;
 esac
diff --git a/configure.ac b/configure.ac
index 987dfab..4081fb9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3063,7 +3063,7 @@  fi
 # multilib is not explicitly enabled.
 case "$target:$have_compiler:$host:$target:$enable_multilib" in
   x86_64-*linux*:yes:$build:$build:)
-    # Make sure we have a developement environment that handles 32-bit
+    # Make sure we have a development environment that handles 32-bit
     dev64=no
     echo "int main () { return 0; }" > conftest.c
     ${CC} -m32 -o conftest ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} conftest.c
@@ -3074,7 +3074,7 @@  case "$target:$have_compiler:$host:$target:
$enable_multilib" in
     fi 
     rm -f conftest*
     if test x${dev64} != xyes ; then
-      AC_MSG_ERROR([I suspect your system does not have 32-bit 
developement libraries (libc and headers). If you have them, rerun 
configure with --enable-multilib. If you do not have them, and want to 
build a 64-bit-only compiler, rerun configure with --disable-multilib.])