Date: Sat, 31 Jul 2010 14:53:43 +0000 (UTC) From: Rui Paulo <rpaulo@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r210683 - head/lib Message-ID: <201007311453.o6VErhfm010803@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201007311453.o6VErhfm010803>