svn commit: r210683 - head/lib

Rui Paulo rpaulo at FreeBSD.org
Sat Jul 31 14:53:43 UTC 2010


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


More information about the svn-src-head mailing list