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
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<cd mylib && $(MAKE) $(PASTHRU)>, similarly for the Makefile in the
subdirectory.)
Let's also fix the MANIFEST file so that it accurately reflects the contents