From: Thomas Guyot-Sionnest Date: Sun, 23 Nov 2008 22:52:09 +0000 (-0500) Subject: tinderbox: Comment out additional PATH conponent added for SunOS builds X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=088452683cf881c6ed717cc559ca2eee3faa95ca;p=nagiosplug.git tinderbox: Comment out additional PATH conponent added for SunOS builds --- diff --git a/tools/tinderbox_build b/tools/tinderbox_build index ab4234a..416f926 100755 --- a/tools/tinderbox_build +++ b/tools/tinderbox_build @@ -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";