From owner-freebsd-current Sun Oct 21 18:50:42 2001 Delivered-To: freebsd-current@freebsd.org Received: from bsd1.gccs.com.au (bsd1.gccs.com.au [203.17.152.2]) by hub.freebsd.org (Postfix) with ESMTP id 2678137B403 for ; Sun, 21 Oct 2001 18:50:37 -0700 (PDT) Received: from LB50X (LB50X.gccs.com.au [203.17.152.10]) by bsd1.gccs.com.au (8.11.6/8.11.6) with SMTP id f9M1oYI03351 for ; Mon, 22 Oct 2001 11:50:35 +1000 (EST) (envelope-from starr3@gccs.com.au) Message-ID: <007901c15a9b$f1495430$0a9811cb@gccs.com.au> From: "Harry Starr" To: "current" Subject: Re: Current makeworld seems broken. Date: Mon, 22 Oct 2001 11:50:34 +1000 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The problem is the new inclusion of ipfilter stuff. Make will change directory to .OBJDIR if it exists, and it does NOW that there is an ipfilter SUBDIR. A "fix" might be: >>> --- Makefile Mon Oct 22 11:44:12 2001 +++ Makefile.new Mon Oct 22 11:47:27 2001 @@ -2,7 +2,7 @@ # # Doing a make install builds /usr/share/examples -DIRS!= for i in *; do \ +DIRS!= cd ${.CURDIR}; for i in *; do \ if test -d $$i -a $$i != CVS -a $$i != ipfilter; then \ echo $$i; \ fi; \ @@ -22,10 +22,10 @@ beforeinstall: etc-examples ${SHARED} .for dir in ${DIRS} -FILES!= find -L ${dir} \( -name CVS -prune \) -o -type f -print +FILES!= cd ${.CURDIR}; find -L ${dir} \( -name CVS -prune \) -o -type f-print .for file in ${FILES} copies:: - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${file} ${DDIR}/${file} + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${.CURDIR}/${file} ${DDIR}/${file} .endfor .endfor <<< To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message