summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive/TLTREE.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/TeXLive/TLTREE.pm')
-rw-r--r--Master/tlpkg/TeXLive/TLTREE.pm12
1 files changed, 0 insertions, 12 deletions
diff --git a/Master/tlpkg/TeXLive/TLTREE.pm b/Master/tlpkg/TeXLive/TLTREE.pm
index d23fd2d7e54..d3af63e1a27 100644
--- a/Master/tlpkg/TeXLive/TLTREE.pm
+++ b/Master/tlpkg/TeXLive/TLTREE.pm
@@ -32,7 +32,6 @@ sub init_from_svn {
die "undefined svn root" if !defined($self->{'svnroot'});
my @lines = `cd $self->{'svnroot'} && svn status -v`;
$self->_initialize_lines(@lines);
- debug("initialized lines\n");
}
sub init_from_statusfile {
@@ -59,18 +58,7 @@ sub _initialize_lines {
my @lines = @_;
my %archs;
# we first chdir to the svn root, we need it for file tests
- debug("_il: about to run pwd, with env:\n");
- for my $key (sort keys %ENV) {
- debug("_il: $key=$ENV{$key}\n");
- }
chomp (my $oldpwd = `pwd`);
- debug("_il: got oldpwd=$oldpwd\n");
- chomp (my $trial2 = `pwd`);
- debug("_il: got trial2=$trial2\n");
- chomp (my $trial3 = `/bin/pwd`);
- debug("_il: got trial3=$trial3\n");
- chomp (my $trial4 = `echo hello`);
- debug("_il: got trial4=$trial4\n");
chdir($self->svnroot) || die "chdir($self->{svnroot}) failed: $!";
foreach my $l (@lines) {
chomp($l);