summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/DB.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/tlperl/lib/DB.pm')
-rw-r--r--Master/tlpkg/tlperl/lib/DB.pm11
1 files changed, 1 insertions, 10 deletions
diff --git a/Master/tlpkg/tlperl/lib/DB.pm b/Master/tlpkg/tlperl/lib/DB.pm
index efb903557a7..16ff99afa52 100644
--- a/Master/tlpkg/tlperl/lib/DB.pm
+++ b/Master/tlpkg/tlperl/lib/DB.pm
@@ -41,7 +41,7 @@ BEGIN {
$DB::subname = ''; # currently executing sub (fullly qualified name)
$DB::lineno = ''; # current line number
- $DB::VERSION = $DB::VERSION = '1.02';
+ $DB::VERSION = $DB::VERSION = '1.03';
# initialize private globals to avoid warnings
@@ -93,15 +93,6 @@ sub DB {
$usrctxt = "package $DB::package;"; # this won't let them modify, alas
local(*DB::dbline) = "::_<$DB::filename";
- # we need to check for pseudofiles on Mac OS (these are files
- # not attached to a filename, but instead stored in Dev:Pseudo)
- # since this is done late, $DB::filename will be "wrong" after
- # skippkg
- if ($^O eq 'MacOS' && $#DB::dbline < 0) {
- $DB::filename = 'Dev:Pseudo';
- *DB::dbline = "::_<$DB::filename";
- }
-
my ($stop, $action);
if (($stop,$action) = split(/\0/,$DB::dbline{$DB::lineno})) {
if ($stop eq '1') {