From owner-freebsd-questions Fri Sep 13 08:00:48 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id IAA25459 for questions-outgoing; Fri, 13 Sep 1996 08:00:48 -0700 (PDT) Received: from diablo.ppp.de (diablo.ppp.de [193.141.101.34]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id IAA25453 for ; Fri, 13 Sep 1996 08:00:43 -0700 (PDT) Received: from allegro.lemis.de by diablo.ppp.de with smtp (Smail3.1.28.1 #1) id m0v1ZjU-000QizC; Fri, 13 Sep 96 17:00 MET DST From: grog@lemis.de (Greg Lehey) Organisation: LEMIS, Schellnhausen 2, 36325 Feldatal, Germany Phone: +49-6637-919123 Fax: +49-6637-919122 Received: (grog@localhost) by allegro.lemis.de (8.6.9/8.6.9) id QAA24101; Fri, 13 Sep 1996 16:16:09 +0200 Message-Id: <199609131416.QAA24101@allegro.lemis.de> Subject: Re: kernel compile To: henerz@micromedia.co.uk (Henerz) Date: Fri, 13 Sep 1996 16:16:09 +0200 (MET DST) Cc: questions@FreeBSD.org (FreeBSD Questions) In-Reply-To: <199609131341.OAA04130@ns.micromedia.co.uk> from "Henerz" at Sep 13, 96 02:39:15 pm X-Mailer: ELM [version 2.4 PL23] MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-questions@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk Henerz writes: > >> On my system, line 26 of the Makefile is: >> >> .if exists(./@/.) >> > >> Is this what you have at line 24? > > yes this is what is on mine too. this has actually, thinking about it, only > started happening since i updated my gcc install... do you think that this has > something to do with it? Possibly. Check where you have your make. The one you need is probably /usr/bin/make. The 'wh' script that I used (a variation on the standard utility 'which') is: # wh: which which works (goes via PATH variable) # Greg Lehey, LEMIS, 15 February 1994 tmpfile=/tmp/`basename $0`.$$ (for j in $*; do for i in `echo $PATH|sed 's/:/ /g'`; do if [ -f $i/$j ]; then echo $i/$j fi done done) >$tmpfile if [ -s $tmpfile ]; then # GNU ls treats -lf and -fl differently xargs <$tmpfile ls -fl else echo No files found fi rm $tmpfile