diff options
author | ngie <ngie@FreeBSD.org> | 2016-12-03 00:40:08 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2016-12-03 00:40:08 +0000 |
commit | d3848ad47b2459e90d46c84bb137d2ceabd51bbd (patch) | |
tree | c03608c2bf2b71da6131d6c4b015175546b7bd91 /lib/libc | |
parent | f44f36c66782992bb9580210e51609542618593b (diff) | |
download | FreeBSD-src-d3848ad47b2459e90d46c84bb137d2ceabd51bbd.zip FreeBSD-src-d3848ad47b2459e90d46c84bb137d2ceabd51bbd.tar.gz |
MFstable/11 r309453:
MFC r307700:
Only build lib/libc/tests/iconv if MK_ICONV != no
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/tests/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/libc/tests/Makefile b/lib/libc/tests/Makefile index 15db4fd..6f60599 100644 --- a/lib/libc/tests/Makefile +++ b/lib/libc/tests/Makefile @@ -24,6 +24,10 @@ TESTS_SUBDIRS+= termios TESTS_SUBDIRS+= tls TESTS_SUBDIRS+= ttyio +.if ${MK_ICONV} != "no" +TESTS_SUBDIRS+= iconv +.endif + .if ${MK_LOCALES} != "no" TESTS_SUBDIRS+= locale .endif |