diff options
Diffstat (limited to 'tools/tinderbox_build')
-rwxr-xr-x | tools/tinderbox_build | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/tinderbox_build b/tools/tinderbox_build index ab4234a..5035b60 100755 --- a/tools/tinderbox_build +++ b/tools/tinderbox_build | |||
@@ -234,8 +234,10 @@ sub SetupPath { | |||
234 | $Path = $ENV{PATH}; | 234 | $Path = $ENV{PATH}; |
235 | print "Path before: $Path\n"; | 235 | print "Path before: $Path\n"; |
236 | 236 | ||
237 | if ( $OS eq 'SunOS' ) { | 237 | # Don't alter path if we're building off a repository tree; |
238 | $ENV{'PATH'} = '/usr/ccs/bin:' . $ENV{'PATH'}; | 238 | # SunOS make will work only out of snapshots and releases. |
239 | if ( $OS eq 'SunOS' && !( -e '.svn' || -e '.git' )) { | ||
240 | $ENV{'PATH'} = '/usr/ccs/bin:' . $ENV{'PATH'}; | ||
239 | } | 241 | } |
240 | 242 | ||
241 | $Path = $ENV{PATH}; | 243 | $Path = $ENV{PATH}; |