summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authordholland <dholland>2009-08-01 20:19:37 +0000
committerdholland <dholland>2009-08-01 20:19:37 +0000
commit763ccbd3be67b180f775830cd1129422dac0943c (patch)
tree5ea00c2b3f0ab923a0c1028acd2906b877a63a94 /bootstrap
parent602501c10fa42e778f2199c25c2582313c1388a9 (diff)
downloadpkgsrc-763ccbd3be67b180f775830cd1129422dac0943c.tar.gz
Add /usr/bsd to $overpath for IRIX as per PR 38802. I'm going to leave
/usr/bsd/bin there for now (unless someone wants to confirm it's never existed in *any* IRIX version) because it should ordinarily be harmless.
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap/bootstrap5
1 files changed, 4 insertions, 1 deletions
diff --git a/bootstrap/bootstrap b/bootstrap/bootstrap
index 2b6288db962..b9d28c44228 100755
--- a/bootstrap/bootstrap
+++ b/bootstrap/bootstrap
@@ -1,6 +1,6 @@
#! /bin/sh
-# $NetBSD: bootstrap,v 1.149 2009/07/05 12:35:13 ahoka Exp $
+# $NetBSD: bootstrap,v 1.150 2009/08/01 20:19:37 dholland Exp $
#
#
# Copyright (c) 2001-2002 Alistair G. Crooks. All rights reserved.
@@ -509,6 +509,9 @@ IRIX*)
if [ -d "/usr/freeware/bin" ]; then
overpath="/usr/freeware/bin:$overpath"
fi
+ if [ -d "/usr/bsd" ]; then
+ overpath="/usr/bsd:$overpath"
+ fi
if [ -d "/usr/bsd/bin" ]; then
overpath="/usr/bsd/bin:$overpath"
fi