[svn:parrot] r41946 - branches/pcc_reapply/config/auto

bacek at svn.parrot.org bacek at svn.parrot.org
Tue Oct 20 03:35:56 UTC 2009


Author: bacek
Date: Tue Oct 20 03:35:45 2009
New Revision: 41946
URL: https://trac.parrot.org/parrot/changeset/41946

Log:
Temporary disable buildframes detection.

Modified:
   branches/pcc_reapply/config/auto/frames.pm

Modified: branches/pcc_reapply/config/auto/frames.pm
==============================================================================
--- branches/pcc_reapply/config/auto/frames.pm	Tue Oct 20 01:18:18 2009	(r41945)
+++ branches/pcc_reapply/config/auto/frames.pm	Tue Oct 20 03:35:45 2009	(r41946)
@@ -40,6 +40,7 @@
 
 sub _call_frames_buildable {
     my $conf = shift;
+
     my $osname  = $conf->data->get('osname');
     my $cpuarch = $conf->data->get('cpuarch');
     my $nvsize  = $conf->data->get('nvsize');
@@ -49,8 +50,10 @@
         $can_build_call_frames = $conf->options->get('buildframes');
     }
     else {
-        $can_build_call_frames = ($nvsize == 8 && $cpuarch eq 'i386'
-            && $osname ne 'darwin');
+        # Temporary disable build frames automatically.
+        #$can_build_call_frames = ($nvsize == 8 && $cpuarch eq 'i386'
+        #    && $osname ne 'darwin');
+        $can_build_call_frames = 0;
     }
     return $can_build_call_frames;
 }


More information about the parrot-commits mailing list