svn commit: r307652 - head/gnu/lib

Ed Maste emaste at FreeBSD.org
Wed Oct 19 19:32:08 UTC 2016


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


More information about the svn-src-head mailing list