Can you please tell me what's going on here ...
The intention of the patch is to alter the settings of INST_TOP, CCHOME, and EMAIL.
You could alter those settings in the GNUmakefile by hand if you like.
However, a better solution IMO, is to leave the GNUmakefile in its original state and run:
gmake INST_TOP=C:\perl_app\bin\Perl CCHOME=C:\msys64\mingw64 EMAIL=cus
+tomer_support@xyz.com
gmake test INST_TOP=C:\perl_app\bin\Perl CCHOME=C:\msys64\mingw64 EMAI
+L=customer_support@xyz.com
gmake install INST_TOP=C:\perl_app\bin\Perl CCHOME=C:\msys64\mingw64 E
+MAIL=customer_support@xyz.com
do I need to modify the makefile.patch file
If you want to make your configurational changes by running
patch then yes, you will need a different patch file.
The current patch is not written for the GNUmakefile.
For example, the line
#EMAIL *=
does not exist in GNUmakefile.
Instead GNUmakefile contains:
#EMAIL :=
and that line needs to be changed to:
EMAIL := customer_support@xyz.com
not to:
EMAIL *= customer_support@xyz.com
Also, the numbers in the lines like
@@ -27,7 +27,7 @@ etc. are all wrong for the GNUmakefile.
Cheers,
Rob
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.