From 5233a96cd1fefaf55bfde6828327faa2ac105c8a Mon Sep 17 00:00:00 2001 From: Marcel Moolenaar Date: Fri, 17 Dec 1999 11:23:56 +0000 Subject: [PATCH] Don't build usr.sbin/pcvt/keycap on anything other than i386 when building the libraries target. pcvt is i386 specific. --- Makefile.inc1 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile.inc1 b/Makefile.inc1 index b459a8df894d..5d96b1cf8fc4 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -529,11 +529,15 @@ _libm= lib/msun _libperl= gnu/usr.bin/perl/libperl .endif +.if ${MACHINE_ARCH} == "i386" +_libkeycap= usr.sbin/pcvt/keycap +.endif + libraries: .for _lib in ${_csu} lib/libmd lib/libcrypt ${_secure_lib} ${_kerberosIV_lib} \ gnu/lib/libgcc lib/libcom_err ${_libm} lib/libncurses lib/libradius \ lib/libskey lib/libtacplus lib/libutil lib gnu/lib ${_libperl} \ - usr.bin/lex/lib usr.sbin/pcvt/keycap + usr.bin/lex/lib ${_libkeycap} .if exists(${.CURDIR}/${_lib}) cd ${.CURDIR}/${_lib}; \ ${MAKE} depend; \