diff options
author | Jim Meyering <jim@meyering.net> | 1998-02-07 09:50:58 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-02-07 09:50:58 +0000 |
commit | 9e7ca267388117fc684329353ab7b1380f6ffe83 (patch) | |
tree | 8f76dc27806997c6beefb3f936df573f909230b7 /m4 | |
parent | de38f9c61fbff24a842744876be5ba6d1b095b18 (diff) | |
download | coreutils-9e7ca267388117fc684329353ab7b1380f6ffe83.tar.xz |
Don't set am_cv_func_working_getline before the
cache-check for the same variable -- that defeated the purpose of
the test; the test program was never run. This was a problem only
on systems with losing getline functions -- HP-UX 10.20 is one.
Reported by Bjorn Helgaas.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/getline.m4 | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/m4/getline.m4 b/m4/getline.m4 index b5e20ef3a..2fd393f0c 100644 --- a/m4/getline.m4 +++ b/m4/getline.m4 @@ -7,7 +7,6 @@ dnl to do with the function we need. AC_DEFUN(AM_FUNC_GETLINE, [dnl am_getline_needs_run_time_check=no - am_cv_func_working_getline=yes AC_CHECK_FUNC(getline, dnl Found it in some library. Verify that it works. am_getline_needs_run_time_check=yes, |