Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 19 Oct 2016 19:32:07 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r307652 - head/gnu/lib
Message-ID:  <201610191932.u9JJW7C4005033@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Wed Oct 19 19:32:06 2016
New Revision: 307652
URL: https://svnweb.freebsd.org/changeset/base/307652

Log:
  Switch gnu/lib/Makefile to SUBDIR.${MK_*} optional subdir style
  
  Compound conditions are left unchanged

Modified:
  head/gnu/lib/Makefile

Modified: head/gnu/lib/Makefile
==============================================================================
--- head/gnu/lib/Makefile	Wed Oct 19 18:45:06 2016	(r307651)
+++ head/gnu/lib/Makefile	Wed Oct 19 19:32:06 2016	(r307652)
@@ -5,18 +5,9 @@
 SUBDIR= csu libgcc libregex
 
 SUBDIR.${MK_DIALOG}+=	libdialog
-
-.if ${MK_GCC} != "no"
-SUBDIR+= libgcov libgomp
-.endif
-
-.if ${MK_SSP} != "no"
-SUBDIR+= libssp
-.endif
-
-.if ${MK_TESTS} != "no"
-SUBDIR+= tests
-.endif
+SUBDIR.${MK_GCC}+=	libgcov libgomp
+SUBDIR.${MK_SSP}+=	libssp
+SUBDIR.${MK_TESTS}+=	tests
 
 .if ${MK_BINUTILS} != "no" && ${MK_GDB} != "no"
 SUBDIR+=	libreadline



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