in reply to Module::Install: How do I set EXE_FILES?

how can I indicate to Module::Install that there are exe files?

Maybe install_script ... ?

At least, this seems to be mapped to EXE_FILES internally:

sub install_script { my $self = shift; my $args = $self->makemaker_args; my $exe = $args->{EXE_FILES} ||= []; foreach ( @_ ) { if ( -f $_ ) { push @$exe, $_; } elsif ( -d 'script' and -f "script/$_" ) { push @$exe, "script/$_"; } else { die("Cannot find script '$_'"); } } }

Replies are listed 'Best First'.
Re^2: Module::Install: How do I set EXE_FILES?
by tod222 (Pilgrim) on Jul 28, 2008 at 19:10 UTC
    Yes, thanks, install_script does it, I just noticed that.