Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor addition to the documentation #63

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ NAME
SYNOPSIS
In your Makefile.PL: (Recommended Usage)

use lib qw(.); # required for Perl 5.26 and newer
use inc::Module::Install;

# Define metadata
Expand All @@ -28,7 +29,7 @@ WARNING
Please note that while Module::Install pioneered many great ideas in its
time, its primary benefits have been better achieved by the authoring
tool Dist::Zilla, and its spinoffs Dist::Milla and Minilla. These tools
allow the author to build and maintain distributions with DWIM
allow the author to build and aintain distributions with DWIM
convenience, while the distribution is installed directly by
ExtUtils::MakeMaker or similar installation tools, avoiding the
complexity of bundling the installer. Dist::Zilla additionally has a
Expand All @@ -37,6 +38,13 @@ WARNING
Module::Install for new distributions is therefore discouraged by the
maintainers.

From Perl 5.26 the current directory is not included in @INC and
the Makefile.PL will have to be directed to including Module::Install from
the inc/ directory.

use lib qw(.); # required for Perl 5.26 and newer
use inc::Module::Install;

DESCRIPTION
Module::Install is a package for writing installers for CPAN (or
CPAN-like) distributions that are clean, simple, minimalist, act in a
Expand Down