diff options
author | Tom Hughes <tom@compton.nu> | 1998-07-10 10:01:12 +0100 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-11 01:47:19 +0000 |
commit | ec943e08dab44ba23d627be8e095a4a8d45c007d (patch) | |
tree | 5365c327c773961bdcae935b2bca83663a73fdf9 | |
parent | a35c6d74dcada6427583dab71ea42bb5d224659d (diff) | |
download | perl-ec943e08dab44ba23d627be8e095a4a8d45c007d.tar.gz |
[5.004_71] Patch: Fix perl_exp.SH for Unixware
Message-ID: <yekr9zu5e47.fsf@elva.cyberscience.com>
p4raw-id: //depot/perl@1415
-rw-r--r-- | perl_exp.SH | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl_exp.SH b/perl_exp.SH index d59bc75042..a874e5c13d 100644 --- a/perl_exp.SH +++ b/perl_exp.SH @@ -44,8 +44,8 @@ syms="global.sym interp.sym thread.sym" sed -n '/^[A-Za-z]/ s/^/Perl_/p' $syms >> perl.exp -sed -n 's/^PERLVAR.*(G\([^,[]*\).*/Perl_\1/p' perlvars.h >> perl.exp -sed -n 's/^PERLVAR.*(T\([^,[]*\).*/Perl_\1/p' thrdvar.h >> perl.exp +sed -n 's/^PERLVAR.*(G\([^[,]*\).*/Perl_\1/p' perlvars.h >> perl.exp +sed -n 's/^PERLVAR.*(T\([^[,]*\).*/Perl_\1/p' thrdvar.h >> perl.exp # # If we use the PerlIO abstraction layer, add its symbols |