diff options
author | jake%bugzilla.org <> | 2003-04-02 08:40:56 +0000 |
---|---|---|
committer | jake%bugzilla.org <> | 2003-04-02 08:40:56 +0000 |
commit | 696b6288d781df6bee4285538c6473018d98104d (patch) | |
tree | 52c5a9afdd45376a168cbde8149589d394f41e98 /docs/sgml/filetemp.patch | |
parent | d424139784eb4b5042c3be3fad18f7e5e4c59439 (diff) | |
download | bugs-696b6288d781df6bee4285538c6473018d98104d.tar bugs-696b6288d781df6bee4285538c6473018d98104d.tar.gz bugs-696b6288d781df6bee4285538c6473018d98104d.tar.bz2 bugs-696b6288d781df6bee4285538c6473018d98104d.tar.xz bugs-696b6288d781df6bee4285538c6473018d98104d.zip |
Bug 171674 - Adding a section to the Troubleshooting section describing how to fix the File::Temp problems in perl 5.6.0.
Diffstat (limited to 'docs/sgml/filetemp.patch')
-rw-r--r-- | docs/sgml/filetemp.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/sgml/filetemp.patch b/docs/sgml/filetemp.patch new file mode 100644 index 000000000..9fb70adce --- /dev/null +++ b/docs/sgml/filetemp.patch @@ -0,0 +1,18 @@ +--- File/Temp.pm.orig Thu Feb 6 16:26:00 2003 ++++ File/Temp.pm Thu Feb 6 16:26:23 2003 +@@ -205,6 +205,7 @@ + # eg CGI::Carp + local $SIG{__DIE__} = sub {}; + local $SIG{__WARN__} = sub {}; ++ local *CORE::GLOBAL::die = sub {}; + $bit = &$func(); + 1; + }; +@@ -226,6 +227,7 @@ + # eg CGI::Carp + local $SIG{__DIE__} = sub {}; + local $SIG{__WARN__} = sub {}; ++ local *CORE::GLOBAL::die = sub {}; + $bit = &$func(); + 1; + }; |