From ca6737cc90a0f59feea41a4a7802b085947d905e Mon Sep 17 00:00:00 2001 From: YellowJacketLinux Date: Sat, 29 Apr 2023 07:56:27 -0700 Subject: [PATCH] Add note about prompts from Makefile.PL --- 05-Perl-Modules.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/05-Perl-Modules.md b/05-Perl-Modules.md index 10fe831..e119384 100644 --- a/05-Perl-Modules.md +++ b/05-Perl-Modules.md @@ -656,6 +656,20 @@ specified license) can then be conditionally included in `%files`: %doc %{name}-make.test.log +Disabling Makefile.PL Prompts +----------------------------- + +Sometimes a Makefile.PL script will want user interaction. To just +accept the defaults, add the line: + + PERL_MM_USE_DEFAULT=1 \ + +directly above the `perl Makefile.PL` line. + +See the `ExtUtils::MakeMaker` documentation for more information. + + + End Notes ---------