diff options
author | Paul R. Eggert <eggert@cs.ucla.edu> | 2010-07-13 16:29:37 -0700 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2010-07-14 15:45:08 +0100 |
commit | 66af887e57f6d4f485cf68fc16e9558781b648b6 (patch) | |
tree | 3da66ea125c828e293c6d78cea8ed5bba3f4e3ac | |
parent | 4fe3860ebc3cda8918e67db4b827fc5e12250c0b (diff) | |
download | coreutils-66af887e57f6d4f485cf68fc16e9558781b648b6.tar.xz |
maint: omit $(POW_LIB) when linking, as this is no longer needed
* src/Makefile.am (printf_LDADD, seq_LDADD, sleep_LDADD, sort_LDADD):
(tail_LDADD, uptime_LDADD): Omit $(POW_LIB), as it's no longer
needed due to recent gnulib changes, where the strtod module no
longer uses the pow function. strtold needs pow only because it's
sometimes aliased to strtod. See
http://lists.gnu.org/archive/html/bug-gnulib/2010-07/msg00076.html
-rw-r--r-- | src/Makefile.am | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 2e0e32088..d87fbb5b3 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -343,14 +343,6 @@ ls_LDADD += $(LIB_CAP) dd_LDADD += $(LIB_FDATASYNC) shred_LDADD += $(LIB_FDATASYNC) -# for strtod, strtold -printf_LDADD += $(POW_LIB) -seq_LDADD += $(POW_LIB) -sleep_LDADD += $(POW_LIB) -sort_LDADD += $(POW_LIB) -tail_LDADD += $(POW_LIB) -uptime_LDADD += $(POW_LIB) - # for xnanosleep sleep_LDADD += $(LIB_NANOSLEEP) sort_LDADD += $(LIB_NANOSLEEP) |