svn commit: r283151 - head

Garrett Cooper ngie at FreeBSD.org
Wed May 20 13:04:01 UTC 2015


Author: ngie
Date: Wed May 20 13:04:00 2015
New Revision: 283151
URL: https://svnweb.freebsd.org/changeset/base/283151

Log:
  cddl/lib/libctf isn't always a requirement for lib/libproc; its use is dependent
  on MK_CTF != "no". Use the other divined value instead of reinventing the wheel

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Wed May 20 12:56:40 2015	(r283150)
+++ head/Makefile.inc1	Wed May 20 13:04:00 2015	(r283151)
@@ -1747,7 +1747,7 @@ _generic_libs+= ${_DIR}
 lib/libopie__L lib/libtacplus__L: lib/libmd__L
 
 lib/libproc__L: \
-    cddl/lib/libctf__L lib/libelf__L lib/librtld_db__L lib/libutil__L
+    ${_cddl_lib_libctf} lib/libelf__L lib/librtld_db__L lib/libutil__L
 .if ${MK_CXX} != "no"
 .if ${MK_LIBCPLUSPLUS} != "no"
 lib/libproc__L: lib/libc++


More information about the svn-src-all mailing list