diff options
author | jschauma <jschauma@pkgsrc.org> | 2004-04-29 20:07:48 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2004-04-29 20:07:48 +0000 |
commit | aa6f4b3b9082246faa0ef212180eaa9076703530 (patch) | |
tree | a5336d16ab99ee0ec829e7298efd52cd30b803ac /mk | |
parent | a2334da30ec11933115dbc8f4962f66d3aa50795 (diff) | |
download | pkgsrc-aa6f4b3b9082246faa0ef212180eaa9076703530.tar.gz |
On older IRIX systems, /usr/bin/awk is actually less functional than
/usr/bin/nawk. On newer IRIX systems, the former is a symlink to the
latter. So just always use nawk. Pointed out by Georg Schwarz.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/defs.IRIX.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/defs.IRIX.mk b/mk/defs.IRIX.mk index 73a268096de..eae9450d2e7 100644 --- a/mk/defs.IRIX.mk +++ b/mk/defs.IRIX.mk @@ -1,8 +1,8 @@ -# $NetBSD: defs.IRIX.mk,v 1.48 2004/04/21 16:30:19 jschauma Exp $ +# $NetBSD: defs.IRIX.mk,v 1.49 2004/04/29 20:07:48 jschauma Exp $ # # Variable definitions for the IRIX operating system. -AWK?= /usr/bin/awk +AWK?= /usr/bin/nawk BASENAME?= /sbin/basename CAT?= /sbin/cat CHMOD?= /sbin/chmod |