diff options
author | Jan van Dijk <jan@etpmod.phys.tue.nl> | 2006-11-06 20:49:31 +0100 |
---|---|---|
committer | Danny Smith <dannysmith@gcc.gnu.org> | 2006-11-06 19:49:31 +0000 |
commit | 5f60e48f450f8b42bde14571068b952c2ccfccc9 (patch) | |
tree | 4163c68494a4cd5ca39a44e218ad42a230fb51bd | |
parent | 09fa8841f49c6f3949130406e27e7f7e080cb176 (diff) | |
download | gcc-5f60e48f450f8b42bde14571068b952c2ccfccc9.zip gcc-5f60e48f450f8b42bde14571068b952c2ccfccc9.tar.gz gcc-5f60e48f450f8b42bde14571068b952c2ccfccc9.tar.bz2 |
configure.ac: Fix typo in case statement: :: changed to ;;
2006-11-06 Jan van Dijk <jan@etpmod.phys.tue.nl>
* configure.ac: Fix typo in case statement: :: changed to ;;
* configure: Regenerate.
From-SVN: r118525
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rwxr-xr-x | gcc/configure | 2 | ||||
-rw-r--r-- | gcc/configure.ac | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 967d3c2..55861a2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2006-11-06 Jan van Dijk <jan@etpmod.phys.tue.nl> + + * configure.ac: Fixed typo in case statement: :: changed to ;; + 2006-11-06 Bob Wilson <bob.wilson@acm.org> * longlong.h (__xtensa__): Add definitions for umul_ppmm, __umulsidi3, diff --git a/gcc/configure b/gcc/configure index 582e37b..18a7879 100755 --- a/gcc/configure +++ b/gcc/configure @@ -12531,7 +12531,7 @@ else echo "__cxa_atexit can't be enabled on this target" fi - :: + ;; esac else # We can't check for __cxa_atexit when building a cross, so assume diff --git a/gcc/configure.ac b/gcc/configure.ac index b089f60..4cae3c8 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -1438,7 +1438,7 @@ if test x$enable___cxa_atexit = xyes || \ *) AC_CHECK_FUNC(__cxa_atexit,[use_cxa_atexit=yes], [echo "__cxa_atexit can't be enabled on this target"]) - :: + ;; esac else # We can't check for __cxa_atexit when building a cross, so assume |