mirror of
https://github.com/opnsense/src.git
synced 2026-04-20 21:59:20 -04:00
Don't recurse into libssp when MK_SSP is set to no.
This commit is contained in:
parent
514ead92ea
commit
450ea99db7
1 changed files with 5 additions and 1 deletions
|
|
@ -2,7 +2,11 @@
|
|||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
SUBDIR= csu libgcc libgcov libdialog libgomp libregex libreadline libssp
|
||||
SUBDIR= csu libgcc libgcov libdialog libgomp libregex libreadline
|
||||
|
||||
.if ${MK_SSP} != "no"
|
||||
SUBDIR+= libssp
|
||||
.endif
|
||||
|
||||
# libsupc++ uses libstdc++ headers, although 'make includes' should
|
||||
# have taken care of that already.
|
||||
|
|
|
|||
Loading…
Reference in a new issue