Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 3 Dec 2016 00:40:08 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r309454 - stable/10/lib/libc/tests
Message-ID:  <201612030040.uB30e8Qc006710@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612030040.uB30e8Qc006710>