summaryrefslogtreecommitdiff
path: root/writemain.SH
diff options
context:
space:
mode:
authorPerl 5 Porters <perl5-porters.nicoh.com>1996-01-12 02:09:11 +0000
committerAndy Dougherty <doughera.lafayette.edu>1996-01-12 02:09:11 +0000
commit3c81428c5fa001df0f0ac7d48bfc483afd5efff5 (patch)
tree8279e47e555a76188ed5d0d481a6773018b5be7c /writemain.SH
parent26221e3534264780d1048cb71f853279863ceb01 (diff)
downloadperl-3c81428c5fa001df0f0ac7d48bfc483afd5efff5.tar.gz
Updates from Tim's -m/-M/-V patch.
Diffstat (limited to 'writemain.SH')
-rw-r--r--writemain.SH13
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'