mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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
1 changed files with 2 additions and 2 deletions
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
PROG= du
|
||||
CFLAGS+= -Wall
|
||||
DPADD+= ${LIBM}
|
||||
LDADD+= ${LIBM}
|
||||
DPADD= ${LIBM}
|
||||
LDADD= -lm
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
|
|
|||
Loading…
Reference in a new issue