On Tuesday 03 June 2008 12:40:08 Will Coleda wrote:
> on OS X 10.4, intel, r28051, with a realclean and no options to
> Configure.pl:
>
>
> <SNIP>
> Generating makefiles and other build files...value for 'TEMP_exec_dep'
> in config/gen/makefiles/root.in is undef at
> lib/Parrot/Configure/Compiler.pm line 400, <$in> line 1228.
> .........................done.
> Moving platform files into place......................................done.
> Recording configuration data for later retrieval......................done.
> Okay, we're done!
>
> You can now use `make' to build your Parrot.
> After that, you can use `make test' to run the test suite.
Does this patch fix it? Note that you have to run Configure.pl again.
-- c
=== config/auto/jit.pm
==================================================================
--- config/auto/jit.pm (revision 28058)
+++ config/auto/jit.pm (local)
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2007, The Perl Foundation.
+# Copyright (C) 2001-2008, The Perl Foundation.
# $Id$
=head1 NAME
@@ -167,16 +167,17 @@
}
else {
$conf->data->set(
- jitarchname => 'nojit',
- jitcpuarch => $cpuarch,
- jitcpu => $cpuarch,
- jitosname => $osname,
- jitcapable => 0,
- execcapable => 0,
- cc_hasjit => '',
- TEMP_jit_o => '',
- TEMP_exec_h => '',
- TEMP_exec_o => ''
+ jitarchname => 'nojit',
+ jitcpuarch => $cpuarch,
+ jitcpu => $cpuarch,
+ jitosname => $osname,
+ jitcapable => 0,
+ execcapable => 0,
+ cc_hasjit => '',
+ TEMP_jit_o => '',
+ TEMP_exec_h => '',
+ TEMP_exec_o => '',
+ TEMP_exec_dep, => '',
);
}