On Thu, Feb 28, 2002 at 03:13:30PM -0800, garrick alleged:
> Should all be current cooker... 
> userdrake-0.3-21mdk
> drakxtools-1.1.7-85mdk
> drakxtools-newt-1.1.7-85mdk
> 
> Clicking on "Console" in mcc results in this error:
>       sh: -c: line 1: syntax error near unexpected token `ARRAY(0x84eb9a8)'
>       sh: -c: line 1: `ARRAY(0x84eb9a8) &'
> Someone didn't dereference an array correctly :)

Line 583 of drakconf.real:
  system(($alternate ? $alternate : $exec) . " &");

$alternative is actually an array ref, this fixes this problem:
  system(($alternate ? $alternate->[0] : $exec) . " &");

Reply via email to