From owner-svn-src-all@FreeBSD.ORG Mon Nov 24 22:29:17 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 73356F63; Mon, 24 Nov 2014 22:29:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 5F2B7C9B; Mon, 24 Nov 2014 22:29:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAOMTHK7029101; Mon, 24 Nov 2014 22:29:17 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAOMTHNR029100; Mon, 24 Nov 2014 22:29:17 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201411242229.sAOMTHNR029100@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Mon, 24 Nov 2014 22:29:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r274992 - head/share/mk X-SVN-Group: head 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.18-1 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, 24 Nov 2014 22:29:17 -0000 Author: bapt Date: Mon Nov 24 22:29:16 2014 New Revision: 274992 URL: https://svnweb.freebsd.org/changeset/base/274992 Log: Avoid code duplication by directly adding _INSTALLLIBS and _PRIVATELIBS into _LIBRARIES Reported by: emaste Modified: head/share/mk/src.libnames.mk Modified: head/share/mk/src.libnames.mk ============================================================================== --- head/share/mk/src.libnames.mk Mon Nov 24 22:17:35 2014 (r274991) +++ head/share/mk/src.libnames.mk Mon Nov 24 22:29:16 2014 (r274992) @@ -21,6 +21,7 @@ _PRIVATELIBS= \ ssh \ ucl \ unbound + _INTERNALIBS= \ mandoc \ netbsd \ @@ -29,10 +30,10 @@ _INTERNALIBS= \ sm _LIBRARIES= \ + ${_PRIVATELIBS} \ + ${_INTERNALIBS} \ archive \ asn1 \ - atf_c \ - atf_cxx \ bsdxml \ bsnmp \ bz2 \ @@ -58,7 +59,6 @@ _LIBRARIES= \ geom \ gssapi \ heimbase \ - heimipcc \ hx509 \ ipsec \ jail \ @@ -66,7 +66,6 @@ _LIBRARIES= \ kvm \ krb5 \ l \ - ldns \ lzma \ m \ magic \ @@ -76,7 +75,6 @@ _LIBRARIES= \ mp \ nandfs \ ncursesw \ - netbsd \ nv \ opie \ pam \ @@ -93,13 +91,11 @@ _LIBRARIES= \ sbuf \ sm \ smb \ - ssh \ ssl \ stdthreads \ supcplusplus \ tacplus \ termcapw \ - ucl \ ufs \ ulog \ usb \