diff options
author | Perl 5 Porters <perl5-porters.nicoh.com> | 1996-01-12 02:09:11 +0000 |
---|---|---|
committer | Andy Dougherty <doughera.lafayette.edu> | 1996-01-12 02:09:11 +0000 |
commit | 3c81428c5fa001df0f0ac7d48bfc483afd5efff5 (patch) | |
tree | 8279e47e555a76188ed5d0d481a6773018b5be7c /writemain.SH | |
parent | 26221e3534264780d1048cb71f853279863ceb01 (diff) | |
download | perl-3c81428c5fa001df0f0ac7d48bfc483afd5efff5.tar.gz |
Updates from Tim's -m/-M/-V patch.
Diffstat (limited to 'writemain.SH')
-rw-r--r-- | writemain.SH | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/writemain.SH b/writemain.SH index c70ac20709..e53af7d7de 100644 --- a/writemain.SH +++ b/writemain.SH @@ -90,21 +90,8 @@ if test X"$args" != "X" ; then else echo " newXS(\"${mname}::bootstrap\", boot_${cname}, file);" fi - # does this extension wish to supply automatic booting code? - for aifile in ext/$ext/AutoInit.* ; do - case $aifile in - *.c)echo " /* autoinit code from $aifile follows: */" - echo " {"; cat $aifile; echo " }" - ;; - *.pl) ai="$ai `cat $aifile | tr '\012' ' '`;" - ;; - esac - done echo " }" done - if test "X$ai" != "X"; then - echo " autoboot_preamble = \"BEGIN { $ai }\";" - fi fi cat << 'EOP' |