From owner-freebsd-current Sun Nov 26 00:09:48 1995 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA21359 for current-outgoing; Sun, 26 Nov 1995 00:09:48 -0800 Received: from hub.org (hub.org [199.166.238.138]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id AAA21351 for ; Sun, 26 Nov 1995 00:09:38 -0800 Received: (from scrappy@localhost) by hub.org (8.7.1/8.7.1) id DAA01317; Sun, 26 Nov 1995 03:09:02 -0500 (EST) Date: Sun, 26 Nov 1995 03:08:57 -0500 (EST) From: "Marc G. Fournier" To: current@freebsd.org Subject: Makefile change... Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-current@freebsd.org Precedence: bulk Hi... Since I don't quite think of this as a send-pr problem report (yes, I've sent one in that way, sorry...), and I don't really know of any better place to send it, could someone who "has the power" sutff this into *-current's /usr/src/gnu/usr.bin? Its a modified Makefile that actually checks to see if part of the source tree is even installed before trying to make it. for instance, I don't have awk, since I don't want make world to install over the one I already have. Same as tar and cc. None of the Makefiles, except for /usr/src/Makefile, does any checking on this. Also...is there a better place to send this so that it doesn't go out to the list as a whole? Thanks... Marc G. Fournier | POP Mail Telnet Acct DNS Hosting scrappy@hub.org | WWW Services Database Services | Knowledge, soon to be: | | Information and scrappy@ki.net | WWW: http://hub.org | Communications, Inc -----[ /usr/src/gnu/usr.bin/Makefile ]---- # $Id: Makefile,v 1.27 1995/04/11 17:28:26 nate Exp $ SUBDIR= .if exists(as) SUBDIR+= as .endif .if exists(awk) SUBDIR+= awk .endif .if exists(bc) SUBDIR+= bc .endif .if exists(cc) SUBDIR+= cc .endif .if exists(cpio) SUBDIR+= cpio .endif .if exists(cvs) SUBDIR+= cvs .endif .if exists(dc) SUBDIR+= dc .endif .if exists(dialog) SUBDIR+= dialog .endif .if exists(diff) SUBDIR+= diff .endif .if exists(diff3) SUBDIR+= diff3 .endif .if exists(gdb) SUBDIR+= gdb .endif .if exists(grep) SUBDIR+= grep .endif .if exists(groff) SUBDIR+= groff .endif .if exists(gzip) SUBDIR+= gzip .endif .if exists(kgdb) SUBDIR+= kgdb .endif .if exists(ld) SUBDIR+= ld .endif .if exists(man) SUBDIR+= man .endif .if exists(mkisofs) SUBDIR+= mkisofs .endif .if exists(patch) SUBDIR+= patch .endif .if exists(perl) SUBDIR+= perl .endif .if exists(ptx) SUBDIR+= ptx .endif .if exists(rcs) SUBDIR+= rcs .endif .if exists(sdiff) SUBDIR+= sdiff .endif .if exists(send-pr) SUBDIR+= send-pr .endif .if exists(sort) SUBDIR+= sort .endif .if exists(tar) SUBDIR+= tar .endif .if exists(texinfo) SUBDIR+= texinfo .endif .if exists(yppush) SUBDIR+= yppush .endif .include