summaryrefslogtreecommitdiff
path: root/pod/perlxstut.pod
diff options
context:
space:
mode:
authorIlya Zakharevich <ilya@math.ohio-state.edu>1997-08-07 00:00:00 +0000
committerTim Bunce <Tim.Bunce@ig.co.uk>1997-08-07 00:00:00 +1200
commit88785b6d17314e2c64ab55d13da4069ec0329ac6 (patch)
tree059554189015d8b706536b6dcd2c0468861f2f1a /pod/perlxstut.pod
parentbc44cdafae83e0dac3f8fcc1b06f85be485291c6 (diff)
downloadperl-88785b6d17314e2c64ab55d13da4069ec0329ac6.tar.gz
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
Diffstat (limited to 'pod/perlxstut.pod')
-rw-r--r--pod/perlxstut.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlxstut.pod b/pod/perlxstut.pod
index cdd4344b78..9ebfe82a97 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<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