mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
"Fixed" LDADD by backing out part of the previous commit. -lfoo in
LDADD is not wrong, but the simple substitution in `make checkdpadd' doesn't work if foo.a is not an installed library, so we use the full path to foo.a in both DPADD and LDADD for non-installed libraries.
This commit is contained in:
parent
046d2c31c8
commit
a379b5c288
1 changed files with 1 additions and 1 deletions
|
|
@ -24,7 +24,7 @@ LIBISCDIR!= cd ${.CURDIR}/../../lib/libisc; make -V .OBJDIR
|
|||
LIBISC:= ${LIBISCDIR}/libisc.a
|
||||
|
||||
DPADD+= ${LIBISC}
|
||||
LDADD+= -lisc
|
||||
LDADD+= ${LIBISC}
|
||||
|
||||
HTMLS= acl.html address_list.html comments.html config.html controls.html \
|
||||
docdef.html example.html include.html index.html key.html \
|
||||
|
|
|
|||
Loading…
Reference in a new issue