Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Mar 2002 00:20:07 -0800 (PST)
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 8138 for review
Message-ID:  <200203210820.g2L8K7P43770@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=8138

Change 8138 by peter@peter_overcee on 2002/03/21 00:19:53

	add -DNO_LINT
	block out sysinstall for ia64 - no boot blocks to embed.

Affected files ...

... //depot/projects/ia64/usr.bin/Makefile#9 edit
... //depot/projects/ia64/usr.sbin/Makefile#7 edit

Differences ...

==== //depot/projects/ia64/usr.bin/Makefile#9 (text+ko) ====

@@ -185,7 +185,6 @@
 	write \
 	xargs \
 	xinstall \
-	xlint \
 	xstr \
 	yacc \
 	yes \
@@ -193,6 +192,10 @@
 	ypmatch \
 	ypwhich
 
+.if !defined(NO_LINT)
+SUBDIR+=xlint
+.endif
+
 .if defined(RELEASEDIR) || \
     (!exists(${.CURDIR}/../kerberosIV) && !exists(${.CURDIR}/../secure)) || \
     defined(NOCRYPT) || (defined(NOSECURE) && !defined(MAKE_KERBEROS4))

==== //depot/projects/ia64/usr.sbin/Makefile#7 (text+ko) ====

@@ -101,7 +101,6 @@
 	sliplogin \
 	slstat \
 	spray \
-	sysinstall \
 	syslogd \
 	tcpdchk \
 	tcpdmatch \
@@ -127,6 +126,10 @@
 	ypset \
 	zic
 
+.if ${MACHINE_ARCH} != "ia64"
+SUBDIR+=sysinstall
+.endif
+
 .if !defined(NOLIBC_R) && ${MACHINE_ARCH} != "ia64"
 SUBDIR+=pppctl
 .endif

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200203210820.g2L8K7P43770>