-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
perl Makefile.PL #17835
Comments
Please fill up the issue template and explain the issue. |
It looks like this is trying to patch |
Edited for clarity. |
What issue are you trying to solve? |
cmd starts and ends. |
What specifically are you trying to install and how are you running it? Info such as: which perl
echo $PATH
echo $MSYSTEM
echo $SHELL would help as well. |
Discovered that XML::Parser is required.
|
i think i know what he means, the XML::Parser module is missing from the mingw-w64-perl packages but is needed by other build packages. i ran into this one myself so i installed it to mingw-w64-perl and no problems since. |
made a package for it -> feel free to add it to the repo if usefull. |
How about changing $^O? |
not a perl guru myself but i guess those two might be for msvc ? |
Had this issue too compiling sftl, see newsboat/stfl#7 (review) |
Description / Steps to reproduce the issue
perl Makefile.PL can't be done.
perl -MCPAN -e shell
cpan[1]>reload index
cpan[2]>make ExtUtils::MakeMaker
shell cmd <-stop
ctrl+c
exit <-Force quit with
cd ~/.cpan/build/ExtUtils-MakeMaker-7.70-0
patches(Needs a patch for each update)
perl Makefile.PL INSTALLDIRS=site
make install
Expected behavior
File::Spec::Win32 & ExtUtils::MM_Win32
is made for Command Prompt (CMD).
\ is not a dir separator on bash.
It cannot be used as is, so a patch is required.
sample.$(INST_LIB)\auto$ (FULLEXT)$(INST_ARCHLIB)\auto$ (FULLEXT)$(INST_LIB)/auto/$ (FULLEXT)$(INST_ARCHLIB)/auto/$ (FULLEXT)
before patch
-INST_AUTODIR =
-INST_ARCHAUTODIR =
After patch
+INST_AUTODIR =
+INST_ARCHAUTODIR =
Actual behavior
Verification
Windows Version
MINGW64_NT-10.0-19045
MINGW environments affected
Are you willing to submit a PR?
No response
The text was updated successfully, but these errors were encountered: