svn commit: r309453 - stable/11/lib/libc/tests
Ngie Cooper
ngie at FreeBSD.org
Sat Dec 3 00:38:36 UTC 2016
Author: ngie
Date: Sat Dec 3 00:38:35 2016
New Revision: 309453
URL: https://svnweb.freebsd.org/changeset/base/309453
Log:
MFC r307700:
Only build lib/libc/tests/iconv if MK_ICONV != no
Modified:
stable/11/lib/libc/tests/Makefile
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/lib/libc/tests/Makefile
==============================================================================
--- stable/11/lib/libc/tests/Makefile Sat Dec 3 00:37:00 2016 (r309452)
+++ stable/11/lib/libc/tests/Makefile Sat Dec 3 00:38:35 2016 (r309453)
@@ -8,7 +8,6 @@ TESTS_SUBDIRS= c063
TESTS_SUBDIRS+= db
TESTS_SUBDIRS+= gen
TESTS_SUBDIRS+= hash
-TESTS_SUBDIRS+= iconv
TESTS_SUBDIRS+= inet
TESTS_SUBDIRS+= net
TESTS_SUBDIRS+= nss
@@ -26,6 +25,10 @@ TESTS_SUBDIRS+= ttyio
SUBDIR_DEPEND_tls= tls_dso
+.if ${MK_ICONV} != "no"
+TESTS_SUBDIRS+= iconv
+.endif
+
.if ${MK_LOCALES} != "no"
TESTS_SUBDIRS+= locale
.endif
More information about the svn-src-stable
mailing list