atom feed10 messages in org.freebsd.freebsd-bugsRe: i386/28002: make world fails (ref...
FromSent OnAttachments
re...@sympatico.caJun 9, 2001 8:45 pm 
Peter WemmJun 9, 2001 10:49 pm 
Felix-Antoine ParadisJun 9, 2001 11:07 pm 
Bruce EvansJun 10, 2001 12:29 am 
gre...@FreeBSD.orgJun 10, 2001 3:09 am 
George ReidJun 10, 2001 3:10 am 
Bruce EvansJun 10, 2001 4:09 am 
Peter WemmJun 10, 2001 3:19 pm 
Bruce EvansJun 10, 2001 4:59 pm 
ru...@FreeBSD.orgJun 11, 2001 2:01 am 
Subject:Re: i386/28002: make world fails (ref. to ipf)
From:Bruce Evans (bd@zeta.org.au)
Date:Jun 10, 2001 12:29:42 am
List:org.freebsd.freebsd-bugs

The following reply was made to PR i386/28002; it has been noted by GNATS.

From: Bruce Evans <bd@zeta.org.au> To: Peter Wemm <pet@wemm.org> Cc: free@FreeBSD.ORG Subject: Re: i386/28002: make world fails (ref. to ipf) Date: Sun, 10 Jun 2001 17:24:39 +1000 (EST)

On Sat, 9 Jun 2001, Peter Wemm wrote:

re@sympatico.ca wrote:

Description:

When doing a "make world", it seems that it has a problem with sys/netinet/ip_compat.h I get the message: ===> sbin/ipf make: don't know how to make /usr/src/sbin/ipf/../../sys/netinet/ip_compat.h.

This is because of either: 1) You are using 'make -DNOCLEAN world' (dont do this) and you have a stale .depend file or 2) Something is stale in your obj directory. rm -rf /usr/obj/*

This is actually because the SHARED=symlinks case was broken by moving ipfilter, despite this case being the usual case for makeworld. From src/Makefile.inc1:

@echo "--------------------------------------------------------------" @echo ">>> stage 4: populating ${WORLDTMP}/usr/include" @echo "--------------------------------------------------------------" cd ${.CURDIR}; ${WMAKE} SHARED=symlinks includes ^^^^^^^^^^^^^^^^^^^^^^^^ @echo @echo "--------------------------------------------------------------" @echo ">>> stage 4: building libraries" @echo "--------------------------------------------------------------" cd ${.CURDIR}; ${WMAKE} -DNOHTML -DNOINFO -DNOMAN -DNOFSCHG libraries @echo @echo "--------------------------------------------------------------" @echo ">>> stage 4: make dependencies" @echo "--------------------------------------------------------------" cd ${.CURDIR}; ${WMAKE} par-depend @echo @echo "--------------------------------------------------------------" @echo ">>> stage 4: building everything.." @echo "--------------------------------------------------------------" cd ${.CURDIR}; ${WMAKE} all

Bruce

To Unsubscribe: send mail to majo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message