tinderbox: Comment out additional PATH conponent added for SunOS builds

This commit is contained in:
Thomas Guyot-Sionnest 2008-11-23 17:52:09 -05:00
parent c0a75482b4
commit 088452683c

View file

@ -234,9 +234,11 @@ sub SetupPath {
$Path = $ENV{PATH};
print "Path before: $Path\n";
if ( $OS eq 'SunOS' ) {
$ENV{'PATH'} = '/usr/ccs/bin:' . $ENV{'PATH'};
}
# Any reason for this? This make use of Sun make which cannot handle the
# optional makefile include used for Git versioning.
# if ( $OS eq 'SunOS' ) {
# $ENV{'PATH'} = '/usr/ccs/bin:' . $ENV{'PATH'};
# }
$Path = $ENV{PATH};
print "Path After: $Path\n";