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).
This commit is contained in:
Bruce Evans 2000-03-27 15:02:59 +00:00
parent 5ebae837e1
commit 1f82591eba
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=58670

View file

@ -3,7 +3,7 @@
PROG= du
CFLAGS+= -Wall
DPADD+= ${LIBM}
LDADD+= ${LIBM}
DPADD= ${LIBM}
LDADD= -lm
.include <bsd.prog.mk>