From owner-svn-src-all@freebsd.org Mon Nov 20 20:55:42 2017 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E948DDF53BA; Mon, 20 Nov 2017 20:55:42 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B63F76CBFC; Mon, 20 Nov 2017 20:55:42 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAKKtf9N063606; Mon, 20 Nov 2017 20:55:41 GMT (envelope-from emaste@FreeBSD.org) Received: (from emaste@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAKKtfEd063604; Mon, 20 Nov 2017 20:55:41 GMT (envelope-from emaste@FreeBSD.org) Message-Id: <201711202055.vAKKtfEd063604@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: emaste set sender to emaste@FreeBSD.org using -f From: Ed Maste Date: Mon, 20 Nov 2017 20:55:41 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r326030 - in head: lib usr.bin X-SVN-Group: head X-SVN-Commit-Author: emaste X-SVN-Commit-Paths: in head: lib usr.bin X-SVN-Commit-Revision: 326030 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Nov 2017 20:55:43 -0000 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