diff options
author | Jim Meyering <jim@meyering.net> | 2006-03-27 07:35:23 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-03-27 07:35:23 +0000 |
commit | c5e8364536afe9b40b05c8e67084ed7313e5b6f2 (patch) | |
tree | efe1fe374c2ab4f43f9c09ba6fb1ff85e4fcfd7b /src | |
parent | 20e2d352c0e1fb1e9cade09b758e95a3843b9b2c (diff) | |
download | coreutils-c5e8364536afe9b40b05c8e67084ed7313e5b6f2.tar.xz |
.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 01325eb15..ef9151ea0 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -617,7 +617,8 @@ unlink_DEPENDENCIES = ../lib/libcoreutils.a $(am__DEPENDENCIES_1) \ ../lib/libcoreutils.a uptime_SOURCES = uptime.c uptime_OBJECTS = uptime.$(OBJEXT) -uptime_DEPENDENCIES = $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_1) +uptime_DEPENDENCIES = $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_1) users_SOURCES = users.c users_OBJECTS = users.$(OBJEXT) users_LDADD = $(LDADD) @@ -893,7 +894,9 @@ seq_LDADD = $(LDADD) $(SEQ_LIBM) nanosec_libs = $(LDADD) $(POW_LIB) $(LIB_NANOSLEEP) sleep_LDADD = $(nanosec_libs) tail_LDADD = $(nanosec_libs) -uptime_LDADD = $(LDADD) $(GETLOADAVG_LIBS) + +# If necessary, add -lm to resolve use of pow in lib/strtod.c. +uptime_LDADD = $(LDADD) $(POW_LIB) $(GETLOADAVG_LIBS) su_LDADD = $(LDADD) $(LIB_CRYPT) SUFFIXES = .sh installed_su = $(DESTDIR)$(bindir)/`echo su|sed '$(transform)'` |