mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Don't build SSP tests on MIPS as we dont have stack-protector
supported on this platform. Discussed with: brooks Sponsored by: DARPA, AFRL Sponsored by: HEIF5
This commit is contained in:
parent
310ab671b8
commit
ed8f18ded4
1 changed files with 2 additions and 1 deletions
|
|
@ -30,7 +30,8 @@ SUBDIR_DEPEND_tls= tls_dso
|
|||
TESTS_SUBDIRS+= locale
|
||||
.endif
|
||||
|
||||
.if ${MK_SSP} != "no"
|
||||
.if ${MK_SSP} != "no" && \
|
||||
${MACHINE_CPUARCH} != "mips"
|
||||
TESTS_SUBDIRS+= ssp
|
||||
.endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue