So I went through the perl readme on github. And I wanted to do this over from scratch. In the Readme file I started at

Building a 64-bit Dynamic EBCDID Perl

On my windows desktop I installed Git.

Went into Git Bash

Did the git clone of perl

Changed directory to perl

I had to set the PERL5LIB path
%ENV:
PERL5LIB="/c/perl/cpan/Extutils-Manifest/lib:/c/greene/perl"
@INC:
/c/perl/cpan/Extutils-Manifest/lib
/c/perl
/usr/lib/perl5/site_perl
/usr/share/perl5/site_perl
/usr/lib/perl5/vendor_perl
/usr/share/perl5/vendor_perl
/usr/lib/perl5/core_perl
/usr/share/perl5/core_perl

The first path was for the Manifest.pm which allowed me to run the Porting/makerel -e

I am not sure what other paths I need because I get the following from the Porting.

$ Porting/makerel -e
#define PERL_REVISION 5 /* age */
#define PERL_VERSION 35 /* epoch */
#define PERL_SUBVERSION 11 /* generation */
#define PERL_API_REVISION 5
#define PERL_API_VERSION 35
#define PERL_API_SUBVERSION 11
#define __PATCHLEVEL_H_INCLUDED__
# define PERL_PATCHNUM "UNKNOWN-miniperl"
# define PERL_GIT_UNPUSHED_COMMITS /*leave-this-comment*/

# define PERL_PATCHNUM "UNKNOWN-microperl"
# define PERL_GIT_UNPUSHED_COMMITS /*leave-this-comment*/
# define LOCAL_PATCH_COUNT \
#define PATCHLEVEL PERL_VERSION
#define SUBVERSION PERL_SUBVERSION

Making a release for perl-5.35.11 in ../perl-5.35.11

Cross-checking the MANIFEST...

Creating ../perl-5.35.11 release directory...

Copying files to release directory...
sh: cpio: command not found
awk '{print $1}' MANIFEST | cpio -pdm ../perl-5.35.11 failed at Porting/makerel
line 125.

I’m learning a ton but just don’t know enough.

In reply to Re: New to PERL by TimeBandit
in thread New to PERL by TimeBandit

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.