diff options
Diffstat (limited to 'perl_exp.SH')
-rw-r--r-- | perl_exp.SH | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl_exp.SH b/perl_exp.SH index ab1866bfaa..d59bc75042 100644 --- a/perl_exp.SH +++ b/perl_exp.SH @@ -38,9 +38,9 @@ echo "Extracting perl.exp" rm -f perl.exp echo "#!" > perl.exp -# No compat3 since and including the 5.004_50. -# perlio.sym added later if needed. -syms=`ls -1 *.sym|egrep -v 'compat3|perlio'` +# No compat3 since 5.004_50. +# perlio.sym will added below if needed. +syms="global.sym interp.sym thread.sym" sed -n '/^[A-Za-z]/ s/^/Perl_/p' $syms >> perl.exp |