diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2006-08-22 07:00:51 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2006-08-22 07:00:51 +0000 |
commit | 86e16425417ed0d1f2da42b7b6e7145d69864091 (patch) | |
tree | 4dfca78f4f760fbccf6eb850f7f54d3de43f1cfe | |
parent | 56795d3ea468eb3e39adf8991affde9d324a42ef (diff) | |
download | coreutils-86e16425417ed0d1f2da42b7b6e7145d69864091.tar.xz |
(LDADD): Restore this line; it is still needed for
t-fpending on platforms without __fpending.
-rw-r--r-- | lib/ChangeLog | 5 | ||||
-rw-r--r-- | lib/Makefile.am | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lib/ChangeLog b/lib/ChangeLog index 1ab59449a..396c7c86d 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,8 @@ +2006-08-21 Eric Blake <ebb9@byu.net> + + * Makefile.am (LDADD): Restore this line; it is still needed for + t-fpending on platforms without __fpending. + 2006-08-20 Paul Eggert <eggert@cs.ucla.edu> Add a bootstrap procedure, so that the CVS version contains fewer diff --git a/lib/Makefile.am b/lib/Makefile.am index 1a3ec764a..85750f620 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -23,6 +23,7 @@ AM_CPPFLAGS += -I.. AM_CFLAGS = $(WARNING_CFLAGS) $(WERROR_CFLAGS) noinst_PROGRAMS = t-fpending +LDADD = $(noinst_LIBRARIES) libcoreutils_a_SOURCES += \ buffer-lcm.c buffer-lcm.h \ |