Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 3 Dec 2016 00:38:35 +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-11@freebsd.org
Subject:   svn commit: r309453 - stable/11/lib/libc/tests
Message-ID:  <201612030038.uB30cZct006558@repo.freebsd.org>

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



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