On Jan 3, 2008 8:40 PM, via RT Andrew Sweger
<[EMAIL PROTECTED]> wrote:
> # New Ticket Created by Andrew Sweger
> # Please include the string: [perl #49368]
> # in the subject line of all future correspondence about this issue.
> # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=49368 >
>
>
> The config/gen/makefiles/root.in perl6 target makes reference to
> ($EXE) when $(EXE) is probably what was expected.
>
> $ svn diff | diffstat
> CREDITS | 4 ++++
> config/gen/makefiles/root.in | 2 +-
> 2 files changed, 5 insertions(+), 1 deletion(-)
>
> --
> Andrew B. Sweger -- The great thing about multitasking is that several
> things can go wrong at once.
>
> Index: CREDITS
>
> ===================================================================
>
> --- CREDITS (revision 24526)
>
> +++ CREDITS (working copy)
>
> @@ -58,6 +58,10 @@
>
> N: Andrew Rodland
>
> D: vim syntax files and editor doc
>
>
>
> +N: Andrew Sweger
>
> +D: typo squisher
>
> +E: [EMAIL PROTECTED]
>
> +
>
> N: Andy Dougherty
>
> D: Config and building.
>
>
>
> Index: config/gen/makefiles/root.in
>
> ===================================================================
>
> --- config/gen/makefiles/root.in (revision 24526)
>
> +++ config/gen/makefiles/root.in (working copy)
>
> @@ -779,7 +779,7 @@
>
>
>
> perl6 : all pbc_to_exe
>
> $(MAKE) languages/perl6
>
> - $(CUR_DIR)/pbc_to_exe($EXE) languages/perl6/perl6.pbc
>
> + $(CUR_DIR)/pbc_to_exe$(EXE) languages/perl6/perl6.pbc
>
>
>
> #
>
> # TODO build the real miniparrot
>
>
>
thanks! applied in r24529.
~jerry