This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
[PATCH v2 1/2] Remove reference of --without-fp on configure
- From: Adhemerval Zanella <adhemerval dot zanella at linaro dot org>
- To: libc-alpha at sourceware dot org
- Date: Thu, 5 Mar 2020 11:01:04 -0300
- Subject: [PATCH v2 1/2] Remove reference of --without-fp on configure
---
configure | 3 ++-
configure.ac | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
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
--
2.17.1