-
Notifications
You must be signed in to change notification settings - Fork 34
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
Use gmake for FreeBSD #815
Conversation
matsduf
commented
Oct 21, 2020
- Updated Makefile.PL so that gmake is used for share/Makefile
- Updated installation instruction to include devel/gmake
- Updated MANIFEST to include yet another file under "inc"
* Updated Makefile.PL so that gmake is used for share/Makefile * Updated installation instruction to include devel/gmake * Updated MANIFEST to include yet another file under "inc"
Please test this on Linux too. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where is the inc/Module/Install/External.pm
from ? I doesn't seem to be present when building on Ubuntu.
@@ -9,6 +9,7 @@ docs/Translation-translators.md | |||
inc/Module/Install.pm | |||
inc/Module/Install/Base.pm | |||
inc/Module/Install/Can.pm | |||
inc/Module/Install/External.pm |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file is not present on Ubuntu :
$ make distcheck
"/usr/bin/perl" "-Iinc" "-MExtUtils::Manifest=fullcheck" -e fullcheck
No such file: inc/Module/Install/External.pm
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suspected that. It appeared when building on FreeBSD after adding
if ($^O eq "freebsd") {
requires_external_bin 'gmake';
};
to Makefile.PL. I will investigate.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now inc/Module/Install/External.pm is included by the second commit. Please review again.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I haven't tested it but it makes sense to me in principle.
@PNAX, can you test again? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This works on Ubuntu.
@mattias-p sorry I misclicked for the review (and I don't know how to reset it)