From: Ilya Zakharevich Date: Thu, 7 Aug 1997 00:00:00 +0000 (+0000) Subject: Major goof in XS Tutorial regarding subdirs X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=88785b6d17314e2c64ab55d13da4069ec0329ac6;p=p5sagit%2Fp5-mst-13.2.git Major goof in XS Tutorial regarding subdirs Subject: [PATCH] Major goof in XS Tutorial (subdirs) I wondered for a lot of time why I never manage to compile extensions with debugging enabled if the main Perl library is optimized. Some time ago I understood that this is due to the following error in XS tutorial: p5p-msgid: 199707260920.FAA12453@monk.mps.ohio-state.edu --- diff --git a/pod/perlxstut.pod b/pod/perlxstut.pod index cdd4344..9ebfe82 100644 --- a/pod/perlxstut.pod +++ b/pod/perlxstut.pod @@ -529,12 +529,12 @@ and a new replacement subroutine too: sub MY::postamble { ' $(MYEXTLIB): mylib/Makefile - cd mylib && $(MAKE) + cd mylib && $(MAKE) $(PASTHRU) '; } (Note: Most makes will require that there be a tab character that indents -the line "cd mylib && $(MAKE)", similarly for the Makefile in the +the line C, similarly for the Makefile in the subdirectory.) Let's also fix the MANIFEST file so that it accurately reflects the contents