svn commit: r309454 - stable/10/lib/libc/tests

Ngie Cooper ngie at FreeBSD.org
Sat Dec 3 00:40:09 UTC 2016


Author: ngie
Date: Sat Dec  3 00:40:08 2016
New Revision: 309454
URL: https://svnweb.freebsd.org/changeset/base/309454

Log:
  MFstable/11 r309453:
  
  MFC r307700:
  
  Only build lib/libc/tests/iconv if MK_ICONV != no

Modified:
  stable/10/lib/libc/tests/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/lib/libc/tests/Makefile
==============================================================================
--- stable/10/lib/libc/tests/Makefile	Sat Dec  3 00:38:35 2016	(r309453)
+++ stable/10/lib/libc/tests/Makefile	Sat Dec  3 00:40:08 2016	(r309454)
@@ -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


More information about the svn-src-stable mailing list