Subject: CVS commit: pkgsrc
To: None <source-changes@netbsd.org>
From: Alistair G. Crooks <agc@netbsd.org>
List: source-changes
Date: 03/31/1999 02:59:45
Module Name: pkgsrc
Committed By: agc
Date: Wed Mar 31 10:59:44 UTC 1999
Modified Files:
pkgsrc/mk: bsd.pkg.mk
Log Message:
Avoid shell smarts: on NetBSD, type is a sh(1) builtin. If make(1) is
invoked, a subsequent "type make" will give "make is a tracked alias
for /usr/bin/make". Using awk(1) to find the third part of that can
lose. type is also a sh(1) builtin on Solaris, which prints "make is
hashed (/usr/bin/make)". However, there is a separate /usr/bin/type,
which prints the pathname at the end.
Minor reformat in same target - replace spaces by tabs where possible.