svn commit: r326030 - in head: lib usr.bin

Ed Maste emaste at FreeBSD.org
Mon Nov 20 20:55:43 UTC 2017


Author: emaste
Date: Mon Nov 20 20:55:41 2017
New Revision: 326030
URL: https://svnweb.freebsd.org/changeset/base/326030

Log:
  Install strings unconditionally
  
  Previously it was enabled by WITH_/WITHOUT_TOOLCHAIN, but it is commonly
  expected to be available and may have non-toolchain consumers.  As it
  is now taken from the BSD-licensed ELF Tool Chain project, just install
  it unconditionally.
  
  PR:		213665, 223725
  Reviewed by:	bdrewery
  MFC after:	1 month
  Sponsored by:	The FreeBSD Foundation
  Differential Revision:	https://reviews.freebsd.org/D8398

Modified:
  head/lib/Makefile
  head/usr.bin/Makefile

Modified: head/lib/Makefile
==============================================================================
--- head/lib/Makefile	Mon Nov 20 20:53:03 2017	(r326029)
+++ head/lib/Makefile	Mon Nov 20 20:55:41 2017	(r326030)
@@ -44,6 +44,7 @@ SUBDIR=	${SUBDIR_BOOTSTRAP} \
 	${_libdl} \
 	libdwarf \
 	libedit \
+	libelftc \
 	libevent \
 	libexecinfo \
 	libexpat \
@@ -136,7 +137,7 @@ SUBDIR.${MK_CLANG}+=	clang
 
 SUBDIR.${MK_CUSE}+= 	libcuse
 SUBDIR.${MK_CXX}+=	libdevdctl
-SUBDIR.${MK_TOOLCHAIN}+=libelftc libpe
+SUBDIR.${MK_TOOLCHAIN}+=libpe
 SUBDIR.${MK_DIALOG}+=	libdpv
 SUBDIR.${MK_FILE}+=	libmagic
 SUBDIR.${MK_GPIO}+=	libgpio

Modified: head/usr.bin/Makefile
==============================================================================
--- head/usr.bin/Makefile	Mon Nov 20 20:53:03 2017	(r326029)
+++ head/usr.bin/Makefile	Mon Nov 20 20:55:41 2017	(r326030)
@@ -150,6 +150,7 @@ SUBDIR=	alias \
 	split \
 	stat \
 	stdbuf \
+	strings \
 	su \
 	systat \
 	tabs \
@@ -277,7 +278,6 @@ SUBDIR.${MK_TOOLCHAIN}+=	readelf
 SUBDIR.${MK_TOOLCHAIN}+=	rpcgen
 SUBDIR.${MK_TOOLCHAIN}+=	unifdef
 SUBDIR.${MK_TOOLCHAIN}+=	size
-SUBDIR.${MK_TOOLCHAIN}+=	strings
 SUBDIR.${MK_TOOLCHAIN}+=	xstr
 SUBDIR.${MK_TOOLCHAIN}+=	yacc
 SUBDIR.${MK_VI}+=	vi


More information about the svn-src-head mailing list