I'm using ExtUtils::MakeMaker to package my perl module but I don't want the makefile to copy files anywhere on the system. I need to disable the "install" target and instead tell the user that this makefile only supports "make dist" when he types "make install".
How do I disable a make target with the perl MakeMaker module?
163 Views Asked by Michal T At
1
There are 1 best solutions below
Related Questions in PERL
- Perl Regex for converting query strings
- Cross compiling perl for Android ld.lld: error: unable to find library -lpthread
- Regexp to remove small numbers and leave large ones
- `df` command not capturing entire output in perl
- Webmin CentOS7 AWS backup errors - perl(S3::AWSAuthConnection) can't be installed
- How to ignore perm errors with Path::Tiny 'visit'? (Windows)
- Why does setting `*\` to a scalar (string) reference not result in auto printing
- Regex for deconstructing SQL where statement
- Random characters in DS record from Net::DNS:RR when calling print/string
- Perl with Selenium: cannot save the Web page with Ctrl+S
- openssl pbkdf2 and perl
- Strawberry Perl using a separate winlibs distro
- Perl / Undefined value as a HASH reference when running SNMP queries
- Timestamp with timezone: works with isql but not with DBD::Firebird
- Slurping a file ... syntax error - example from perldoc
Related Questions in MODULE
- (in promise) TypeError: NetworkError when attempting to fetch resource
- Cannot load modules/mod_dav_svn.so into server
- Not reading the function in a JavaScript Module file, by calling onclick in the html document
- Adding Modules to a Namespace using IIFE
- Preparing metadata (pyproject.toml) ... error
- I want to understand modularity in java. When compiling my app I have a ResolutionException
- ModuleNotFoundError: No module named 'src' while importing logging
- Nest.js can't resolve dependencies of the external library's Reflector dependency
- Npm build error: "Module not found: Error: Can't resolve './component/intro' in
- problemas con los CORS en .net core 7 y angular 15
- how can i fix this :ModuleNotFoundError
- A given package is installed but spyder won't see it
- Should I even continue trying to import a module from the parent package?
- Linking errors with includes in C++ nested modules
- Export and create package of c++20 modules
Related Questions in PACKAGING
- Include extra dependency in pyproject.toml in addition to requirements.txt
- Packaging a desktop application
- TestNG test does not start test if packaging tag in pom.xml is 'pom'<packaging>pom</packaging>
- How can I test if a JS library is packaged correctly (in different environments)?
- Do wheels for a target have to be constructed on a machine with that architecture?
- Packaging with pyinstaller when there are custom input loaders
- Building package for noarch with Maturin for Python >= 3.9
- Electron.js : Sound file does not execute on notification alert after packaging
- Modifying my MSIX app installer file for custom update settings
- How do I package with fyne for macOS? -clang argument unused error
- Install a subpackage with a .toml with a package with .toml
- how node js project to make to production
- Package tsx library into executable
- how to install a namespace package with hatch?
- Get rid of icon blue background in Windows App Installer
Related Questions in MAKEMAKER
- Cannot Install ExtUtils::MakeMaker in Strawberry Perl
- How to build DBD::mysql with DBI in a custom @INC?
- Is there a way to have dependencies defined by OS in a CPAN distribution?
- How can I tell Makemaker to run tests in parallel?
- How do I get a MakeMaker target for code coverage?
- Installing additional files at install time with ExtUtils::MakeMaker/Dist::Zilla (dzil)
- ExtUtils::MakeMaker doesn't generate make target to install dependencies for development
- How can I configure rpmbuild to use lib64/perl5 as an install path?
- Date::Manip install from cpan fails on mac - can't find ExtUtils::MakeMaker
- ExtUtils::MakeMaker compile helper utility
- Resolving circular dependency between ExtUtils::MakeMaker and Test::Harness
- How to populate 'provides' field in META files using ExtUtils::MakeMaker
- How do I disable a make target with the perl MakeMaker module?
- What is the function of PMLIBPARENTDIRS in ExtUtils::MakeMaker?
- perl MakeMaker makefile with submodules
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Define
MY::installin yourMakefile.PLfile:The function should return the text you want to use to replace the
installsection of the Makefile.You could make
make installa synonym formake distwith:Doc: Overriding MakeMaker methods