John Peacock <[EMAIL PROTECTED]> wrote:
> if ($mb->overwrite_makefile() && -f $Makefile ) {
> my $answer = $mb->y_n("Found an existing Makefile.PL; overwrite?");
> if ($answer =~/y/i) {
> write_makefile;
> }
> }
>
> where overwrite_makefile is a package option passed to M::B::new(). I
> did it this way so that
>
> a) the developer has to affirmatively choose that option;
> b) the developer has to _always_ hit 'Y' when running './Build distdir',
> just in case he/she did something manually and forgot to turn off the
> option.
So that's in there now?
BTW.. tsk tsk... y_n requires a default now. ;-)
- Tyler