svn commit: r336907 - head

Ed Maste emaste at FreeBSD.org
Mon Jul 30 14:28:01 UTC 2018


Author: emaste
Date: Mon Jul 30 14:28:00 2018
New Revision: 336907
URL: https://svnweb.freebsd.org/changeset/base/336907

Log:
  Makefile.libcompat: use one variable assignment per line
  
  This makes it easier to carry or merge patches that remove gnu/
  components.

Modified:
  head/Makefile.libcompat

Modified: head/Makefile.libcompat
==============================================================================
--- head/Makefile.libcompat	Mon Jul 30 14:25:17 2018	(r336906)
+++ head/Makefile.libcompat	Mon Jul 30 14:28:00 2018	(r336907)
@@ -129,7 +129,8 @@ LIBCOMPATIMAKE+=	${LIBCOMPATWMAKE:NINSTALL=*:NDESTDIR=
 			MK_TOOLCHAIN=no ${IMAKE_INSTALL} \
 			-DLIBRARIES_ONLY
 
-_LC_LIBDIRS.yes=		lib gnu/lib
+_LC_LIBDIRS.yes=		lib
+_LC_LIBDIRS.yes=		gnu/lib
 _LC_LIBDIRS.${MK_CDDL:tl}+=	cddl/lib
 _LC_LIBDIRS.${MK_CRYPT:tl}+=	secure/lib
 _LC_LIBDIRS.${MK_KERBEROS:tl}+=	kerberos5/lib


More information about the svn-src-all mailing list