summaryrefslogtreecommitdiffstats
path: root/usr.bin/du
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>2000-03-27 15:02:59 +0000
committerbde <bde@FreeBSD.org>2000-03-27 15:02:59 +0000
commit04fe744aae3be48a27e1fa0087baabee33090c36 (patch)
tree7b68f4a9010bdbc3df46e883125d594e0af100cd /usr.bin/du
parentb68474831b462615c0f959b3f03c2aaa0ec0a5c9 (diff)
downloadFreeBSD-src-04fe744aae3be48a27e1fa0087baabee33090c36.zip
FreeBSD-src-04fe744aae3be48a27e1fa0087baabee33090c36.tar.gz
Fixed LDADD. Using ${LIBM} instead of -lm gave the wrong libm in most
cases and broke the world in some cases. Fixed style bugs for DPADD and LDADD (don't use += for variables defined only once).
Diffstat (limited to 'usr.bin/du')
-rw-r--r--usr.bin/du/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/du/Makefile b/usr.bin/du/Makefile
index 8eb6e96..863e392 100644
--- a/usr.bin/du/Makefile
+++ b/usr.bin/du/Makefile
@@ -3,7 +3,7 @@
PROG= du
CFLAGS+= -Wall
-DPADD+= ${LIBM}
-LDADD+= ${LIBM}
+DPADD= ${LIBM}
+LDADD= -lm
.include <bsd.prog.mk>
OpenPOWER on IntegriCloud