diff options
author | tron <tron@pkgsrc.org> | 1999-04-24 18:14:57 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1999-04-24 18:14:57 +0000 |
commit | 08c86266dcd68ec3ff5f469dd06c3e621ea47a6a (patch) | |
tree | 4c32dedd2dfdf776c65c8b6a5fc384654dcee51d /mk | |
parent | 8fe16ccb12db50d1d3236e8a128c169d3046d52d (diff) | |
download | pkgsrc-08c86266dcd68ec3ff5f469dd06c3e621ea47a6a.tar.gz |
Be consistent: always use "/usr/bin/uname".
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 0dc2e535265..4e2c1b330da 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.259 1999/04/22 15:50:42 sakamoto Exp $ +# $NetBSD: bsd.pkg.mk,v 1.260 1999/04/24 18:14:57 tron Exp $ # # This file is in the public domain. # @@ -23,7 +23,7 @@ BSD_PKG_MK=1 # Get the operating system type .ifndef OPSYS -OPSYS!= uname -s +OPSYS!= /usr/bin/uname -s .endif # Include any preferences, if not already included |