diff options
| author | Ruslan Bukin <br@FreeBSD.org> | 2016-09-27 09:44:30 +0000 |
|---|---|---|
| committer | Ruslan Bukin <br@FreeBSD.org> | 2016-09-27 09:44:30 +0000 |
| commit | 5bec6d5513fd22ffca0f6b6162e51baa81006d00 (patch) | |
| tree | 1f9fe76a82da92a0e318fdf8c4933a95ddd347e3 | |
| parent | 3925fe313553e2eefc7658e90a1e29b661027c82 (diff) | |
Notes
| -rw-r--r-- | lib/libc/tests/Makefile | 3 | ||||
| -rw-r--r-- | share/mk/src.opts.mk | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/lib/libc/tests/Makefile b/lib/libc/tests/Makefile index 157e411357e60..4ead70aceaa0e 100644 --- a/lib/libc/tests/Makefile +++ b/lib/libc/tests/Makefile @@ -30,8 +30,7 @@ SUBDIR_DEPEND_tls= tls_dso TESTS_SUBDIRS+= locale .endif -.if ${MK_SSP} != "no" && \ - ${MACHINE_CPUARCH} != "mips" +.if ${MK_SSP} != "no" TESTS_SUBDIRS+= ssp .endif diff --git a/share/mk/src.opts.mk b/share/mk/src.opts.mk index bec699fe12a57..21c7c59675762 100644 --- a/share/mk/src.opts.mk +++ b/share/mk/src.opts.mk @@ -260,6 +260,9 @@ BROKEN_OPTIONS+=LLDB .if ${__T} != "armv6" BROKEN_OPTIONS+=LIBSOFT .endif +.if ${__T} == "mips" || ${__T} == "mips64" +BROKEN_OPTIONS+=SSP +.endif .include <bsd.mkopt.mk> |
