FreeBSD Bugzilla – Attachment 195755 Details for
Bug 230287
Mk/Uses/perl5.mk: Check existence of directory before "find" command usage for this directory
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Proposed patch (since 473539 revision)
Mk.diff (text/plain), 720 bytes, created by
lightside
on 2018-08-02 06:15:58 UTC
(
hide
)
Description:
Proposed patch (since 473539 revision)
Filename:
MIME Type:
Creator:
lightside
Created:
2018-08-02 06:15:58 UTC
Size:
720 bytes
patch
obsolete
>Index: Mk/Uses/perl5.mk >=================================================================== >--- Mk/Uses/perl5.mk (revision 473539) >+++ Mk/Uses/perl5.mk (working copy) >@@ -307,7 +307,8 @@ > ${FIND} ${STAGEDIR}${SITE_MAN3} -name '*::README.3' -delete || : > # Starting at ExtUtils::MakeMaker 7.31_06 and Perl 5.27.1, the base README.pod is > # no longer installed. So remove any that can be there. >- @${FIND} ${STAGEDIR}${PREFIX}/${SITE_PERL_REL} -name README.pod -delete || : >+ @[ -d "${STAGEDIR}${PREFIX}/${SITE_PERL_REL}" ] && \ >+ ${FIND} ${STAGEDIR}${PREFIX}/${SITE_PERL_REL} -name README.pod -delete || : > > . if !target(do-test) && (!empty(USE_PERL5:Mmodbuild*) || !empty(USE_PERL5:Mconfigure)) > TEST_TARGET?= test
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 230287
:
195755