in reply to TinyMake module gives warning

To work around the issue, modify TinyMake.pm

sub show (@_); # <--- add this line sub show (@_){ # line 140, originaly ...

Replies are listed 'Best First'.
Re^2: TinyMake module gives warning
by bart (Canon) on Nov 12, 2010 at 12:42 UTC
    Actually I don't think the sub prototype has any use at all here, nor did it do ever do anything useful in the past, so I'd just drop it.
    sub show { ... }
    Further down I can also see
    sub sh (@){
    which is similarly useless, so make that:
    sub sh {
Re^2: TinyMake module gives warning
by sam_bakki (Pilgrim) on Nov 15, 2010 at 05:33 UTC
    Thank you for all of your replies :) , I have solved the problem by placing  sub show (@_); at line 86. Regrads, Bakkiaraj