Code

tinderbox: Comment out additional PATH conponent added for SunOS builds
authorThomas Guyot-Sionnest <dermoth@solaris.beaubien.net>
Sun, 23 Nov 2008 22:52:09 +0000 (17:52 -0500)
committerThomas Guyot-Sionnest <dermoth@solaris.beaubien.net>
Sun, 23 Nov 2008 22:52:09 +0000 (17:52 -0500)
tools/tinderbox_build

index ab4234aa87365a1fba1611447b7186ef12e5b0e1..416f926c74489dd3b7b054cb96b563bd68de5244 100755 (executable)
@@ -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";