diff options
author | Alan Modra <amodra@gmail.com> | 2020-09-28 15:00:35 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2020-09-30 12:36:52 +0930 |
commit | de2c1d00f27bfaa1f917a2e3a933a45e3b8ba95a (patch) | |
tree | f388e0492ad49a44bfa4c7077f67a268c6896a09 | |
parent | ac001f5ce604f40f0a0099909325837b8792294b (diff) | |
download | gcc-de2c1d00f27bfaa1f917a2e3a933a45e3b8ba95a.zip gcc-de2c1d00f27bfaa1f917a2e3a933a45e3b8ba95a.tar.gz gcc-de2c1d00f27bfaa1f917a2e3a933a45e3b8ba95a.tar.bz2 |
gcc/configure typo fix
* configure.ac (--with-long-double-format): Typo fix.
* configure: Regenerate.
-rwxr-xr-x | gcc/configure | 2 | ||||
-rw-r--r-- | gcc/configure.ac | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gcc/configure b/gcc/configure index b05a371..22fb852 100755 --- a/gcc/configure +++ b/gcc/configure @@ -29897,7 +29897,7 @@ supported if the default cpu is power7 or newer" "$LINENO" 5 ;; esac ;; - xpowerpc64*-*-linux*:*) + powerpc64*-*-linux*:*) as_fn_error $? "--with-long-double-format argument should be ibm or ieee" "$LINENO" 5 with_long_double_format="" ;; diff --git a/gcc/configure.ac b/gcc/configure.ac index f561216..1ad5bbc6 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -6260,7 +6260,7 @@ supported if the default cpu is power7 or newer]) ;; esac ;; - xpowerpc64*-*-linux*:*) + powerpc64*-*-linux*:*) AC_MSG_ERROR([--with-long-double-format argument should be ibm or ieee]) with_long_double_format="" ;; |