svn commit: r315332 - head/gnu/usr.bin

Bryan Drewery bdrewery at FreeBSD.org
Wed Mar 15 21:17:47 UTC 2017


Author: bdrewery
Date: Wed Mar 15 21:17:45 2017
New Revision: 315332
URL: https://svnweb.freebsd.org/changeset/base/315332

Log:
  Fix SUBDIR_DEPEND for gdb on binutils after r307659.
  
  Sponsored by:	Dell EMC Isilon

Modified:
  head/gnu/usr.bin/Makefile

Modified: head/gnu/usr.bin/Makefile
==============================================================================
--- head/gnu/usr.bin/Makefile	Wed Mar 15 21:11:57 2017	(r315331)
+++ head/gnu/usr.bin/Makefile	Wed Mar 15 21:17:45 2017	(r315332)
@@ -2,7 +2,6 @@
 
 .include <src.opts.mk>
 
-SUBDIR_DEPEND_gdb= ${_binutils}
 
 .if ${MK_CXX} != "no"
 SUBDIR.${MK_GCC}+=	gperf
@@ -14,6 +13,7 @@ SUBDIR.${MK_DIALOG}+=	dialog
 
 .if ${MK_BINUTILS} != "no"
 SUBDIR.${MK_GDB}+=	gdb
+SUBDIR_DEPEND_gdb=	binutils
 .endif
 
 SUBDIR.${MK_GCC}+=	cc


More information about the svn-src-head mailing list