From owner-freebsd-current Thu Nov 16 02:50:58 1995 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA03406 for current-outgoing; Thu, 16 Nov 1995 02:50:58 -0800 Received: from mail.cs.tu-berlin.de (mail.cs.tu-berlin.de [130.149.17.13]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id CAA03359 for ; Thu, 16 Nov 1995 02:50:36 -0800 Received: from caramba.cs.tu-berlin.de (wosch@caramba.cs.tu-berlin.de [130.149.17.12]) by mail.cs.tu-berlin.de (8.6.12/8.6.12) with ESMTP id KAA08200; Thu, 16 Nov 1995 10:56:56 +0100 From: Wolfram Schneider Received: (wosch@localhost) by caramba.cs.tu-berlin.de (8.6.12/8.6.9) id KAA08085; Thu, 16 Nov 1995 10:56:50 +0100 Date: Thu, 16 Nov 1995 10:56:50 +0100 Message-Id: <199511160956.KAA08085@caramba.cs.tu-berlin.de> To: asami@cs.berkeley.edu (Satoshi Asami) Cc: current@freebsd.org Subject: Re: absolute pathnames in /usr/share/mk/bsd.*.mk In-Reply-To: <199511160208.SAA01076@silvia.HIP.Berkeley.EDU> References: <199510251635.RAA19353@localhost> <199511160208.SAA01076@silvia.HIP.Berkeley.EDU> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-current@freebsd.org Precedence: bulk Satoshi Asami writes: >This is intentional, at least for bsd.port.mk. We have gotten lots of >reports of bsd.port.mk failing because the user didn't have /usr/sbin >or /sbin in the search path. > >I'm sorry it doesn't work for you, but we have to take care of the >majority first.... ;< $ egrep /bin/ *.mk |wc -l 73 $ egrep /sbin/ *.mk |wc -l 6 $ egrep /sbin/ *.mk bsd.kmod.mk: /sbin/modload -o ${KMOD} -e${KMOD} ${PROG} bsd.kmod.mk: /sbin/modunload -n ${KMOD} bsd.port.mk:MD5?= /sbin/md5 bsd.port.mk:MTREE_CMD?= /usr/sbin/mtree bsd.port.mk:PKG_CMD?= /usr/sbin/pkg_create bsd.port.mk: if /sbin/ldconfig -r | grep -q -e "-l$$lib"; then \ Wolfram