From 04fe744aae3be48a27e1fa0087baabee33090c36 Mon Sep 17 00:00:00 2001 From: bde Date: Mon, 27 Mar 2000 15:02:59 +0000 Subject: 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). --- usr.bin/du/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.bin') 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 -- cgit v1.1