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:
parent
5ebae837e1
commit
1f82591eba
@ -3,7 +3,7 @@
|
||||
|
||||
PROG= du
|
||||
CFLAGS+= -Wall
|
||||
DPADD+= ${LIBM}
|
||||
LDADD+= ${LIBM}
|
||||
DPADD= ${LIBM}
|
||||
LDADD= -lm
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
Loading…
Reference in New Issue
Block a user