diff options
author | pjd <pjd@FreeBSD.org> | 2004-05-24 22:22:29 +0000 |
---|---|---|
committer | pjd <pjd@FreeBSD.org> | 2004-05-24 22:22:29 +0000 |
commit | 72e7aa908c82a0eef8761e6345938417a59b2ebb (patch) | |
tree | e2268ad30fce7d66c6f868759ab24a815498aea4 /bin/df/Makefile | |
parent | d207894810cf9fa574c3f60f611210946e00a166 (diff) | |
download | FreeBSD-src-72e7aa908c82a0eef8761e6345938417a59b2ebb.zip FreeBSD-src-72e7aa908c82a0eef8761e6345938417a59b2ebb.tar.gz |
Use humanize_number(3) to format sizes into a human readable form.
Diffstat (limited to 'bin/df/Makefile')
-rw-r--r-- | bin/df/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/df/Makefile b/bin/df/Makefile index 63991d4..df6574c 100644 --- a/bin/df/Makefile +++ b/bin/df/Makefile @@ -9,7 +9,7 @@ SRCS= df.c vfslist.c CFLAGS+= -I${MOUNT} -DPADD= ${LIBM} -LDADD= -lm +DPADD= ${LIBUTIL} +LDADD= -lutil .include <bsd.prog.mk> |