diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2000-02-26 00:59:51 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2000-02-26 00:59:51 +0000 |
commit | 07735828ddb5e3ddd34fc049fe93f746ca184d98 (patch) | |
tree | 8dc9ca4ce9e4e4c3a59bb7968ebcb733091403e4 /binutils | |
parent | 11038c5ef12baafee2ab746654204a75baffe798 (diff) | |
download | gdb-07735828ddb5e3ddd34fc049fe93f746ca184d98.zip gdb-07735828ddb5e3ddd34fc049fe93f746ca184d98.tar.gz gdb-07735828ddb5e3ddd34fc049fe93f746ca184d98.tar.bz2 |
2000-02-25 H.J. Lu <hjl@gnu.org>
* configure.in (AC_SEARCH_LIBS): Pass m, not -lm.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 2 | ||||
-rw-r--r-- | binutils/configure.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 1673e11..728c6cf 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,6 +1,6 @@ 2000-02-25 H.J. Lu <hjl@gnu.org> - * configure.in (AC_SEARCH_LIBS): Pass lm, not -lm. + * configure.in (AC_SEARCH_LIBS): Pass m, not -lm. 2000-02-24 Nick Clifton <nickc@cygnus.com> diff --git a/binutils/configure.in b/binutils/configure.in index 86ac190..aa10ce9 100644 --- a/binutils/configure.in +++ b/binutils/configure.in @@ -78,7 +78,7 @@ AC_FUNC_ALLOCA AC_CHECK_FUNCS(sbrk utimes) # Some systems have frexp only in -lm, not in -lc. -AC_SEARCH_LIBS(frexp, lm) +AC_SEARCH_LIBS(frexp, m) AC_MSG_CHECKING(for time_t in time.h) AC_CACHE_VAL(bu_cv_decl_time_t_time_h, |