Date: Thu, 8 Jan 2004 16:32:14 -0800 (PST) From: Peter Wemm <peter@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 44990 for review Message-ID: <200401090032.i090WEui061659@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=44990 Change 44990 by peter@peter_daintree on 2004/01/08 16:31:52 Ok, this is a hack, but save it before I lose it. Affected files ... .. //depot/projects/hammer/usr.sbin/Makefile#38 edit .. //depot/projects/hammer/usr.sbin/pcvt/ispcvt/Makefile#2 edit Differences ... ==== //depot/projects/hammer/usr.sbin/Makefile#38 (text+ko) ==== @@ -251,6 +251,10 @@ SUBDIR+=ofwdump .endif +.if ${MACHINE_ARCH} != "i386" +SUBDIR+=pcvt/ispcvt +.endif + .if !defined(NOCRYPT) && !defined(NO_OPENSSL) SUBDIR+=keyserv .endif ==== //depot/projects/hammer/usr.sbin/pcvt/ispcvt/Makefile#2 (text+ko) ==== @@ -1,6 +1,12 @@ # $FreeBSD: src/usr.sbin/pcvt/ispcvt/Makefile,v 1.8 2001/03/26 14:41:07 ru Exp $ +.if ${MACHINE_ARCH} == "i386" PROG= ispcvt MAN= ispcvt.8 +.else +NOOBJ= stub only +NOMAN= stub only +LINKS+= /usr/bin/false /usr/sbin/ispcvt +.endif .include <bsd.prog.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200401090032.i090WEui061659>