diff mbox series

[v2,1/2] Remove reference of --without-fp on configure

Message ID 20200305140105.22734-1-adhemerval.zanella@linaro.org
State New
Headers show
Series [v2,1/2] Remove reference of --without-fp on configure | expand

Commit Message

Adhemerval Zanella Netto March 5, 2020, 2:01 p.m. UTC
---
 configure    | 3 ++-
 configure.ac | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

-- 
2.17.1

Comments

Joseph Myers March 5, 2020, 9:46 p.m. UTC | #1
On Thu, 5 Mar 2020, Adhemerval Zanella wrote:

>  configure    | 3 ++-

>  configure.ac | 3 ++-

>  2 files changed, 4 insertions(+), 2 deletions(-)


OK.

-- 
Joseph S. Myers
joseph@codesourcery.com
diff mbox series

Patch

diff --git a/configure b/configure
index b959d2d988..d0ac26e97e 100755
--- a/configure
+++ b/configure
@@ -4224,7 +4224,8 @@  mach=
 tail=$machine${submachine:+/$submachine}
 while m=`echo $tail | sed 's@^\(.*\)/\([^/]*\)$@& \1@'`; test -n "$m"; do
   set $m
-  # Prepend the machine's FPU directory unless --without-fp.
+  # Prepend the machine's FPU directory unless the architecture specific
+  # preconfigure disables it.
   if test "$libc_cv_with_fp" = yes; then
     maybe_fpu=/fpu
   else
diff --git a/configure.ac b/configure.ac
index 49b900c1ed..325bd6d4d3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -809,7 +809,8 @@  mach=
 tail=$machine${submachine:+/$submachine}
 while m=`echo $tail | sed 's@^\(.*\)/\([^/]*\)$@& \1@'`; test -n "$m"; do
   set $m
-  # Prepend the machine's FPU directory unless --without-fp.
+  # Prepend the machine's FPU directory unless the architecture specific
+  # preconfigure disables it.
   if test "$libc_cv_with_fp" = yes; then
     maybe_fpu=/fpu
   else