diff options
author | Ilya Zakharevich <ilya@math.ohio-state.edu> | 1997-08-07 00:00:00 +0000 |
---|---|---|
committer | Tim Bunce <Tim.Bunce@ig.co.uk> | 1997-08-07 00:00:00 +1200 |
commit | 88785b6d17314e2c64ab55d13da4069ec0329ac6 (patch) | |
tree | 059554189015d8b706536b6dcd2c0468861f2f1a /pod/perlxstut.pod | |
parent | bc44cdafae83e0dac3f8fcc1b06f85be485291c6 (diff) | |
download | perl-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.pod | 4 |
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 |