From owner-svn-src-head@FreeBSD.ORG Sat Jul 31 14:53:43 2010 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 84E0A106566C; Sat, 31 Jul 2010 14:53:43 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7595A8FC08; Sat, 31 Jul 2010 14:53:43 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o6VErhQL010805; Sat, 31 Jul 2010 14:53:43 GMT (envelope-from rpaulo@svn.freebsd.org) Received: (from rpaulo@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o6VErhfm010803; Sat, 31 Jul 2010 14:53:43 GMT (envelope-from rpaulo@svn.freebsd.org) Message-Id: <201007311453.o6VErhfm010803@svn.freebsd.org> From: Rui Paulo Date: Sat, 31 Jul 2010 14:53:43 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r210683 - head/lib X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Jul 2010 14:53:43 -0000 Author: rpaulo Date: Sat Jul 31 14:53:43 2010 New Revision: 210683 URL: http://svn.freebsd.org/changeset/base/210683 Log: Simplify the Makefile. The i386 and amd64 sections are equal. Sponsored by: The FreeBSD Foundation Modified: head/lib/Makefile Modified: head/lib/Makefile ============================================================================== --- head/lib/Makefile Sat Jul 31 14:52:29 2010 (r210682) +++ head/lib/Makefile Sat Jul 31 14:53:43 2010 (r210683) @@ -167,7 +167,7 @@ _libnetgraph= libnetgraph _libypclnt= libypclnt .endif -.if ${MACHINE_ARCH} == "i386" +.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64" .if ${MK_NCP} != "no" _libncp= libncp .endif @@ -181,15 +181,6 @@ _libefi= libefi _libsmb= libsmb .endif -.if ${MACHINE_ARCH} == "amd64" -.if ${MK_NCP} != "no" -_libncp= libncp -.endif -_libsmb= libsmb -_libvgl= libvgl -_libproc= libproc -.endif - .if ${MACHINE_CPUARCH} == "powerpc" _libsmb= libsmb .endif