summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive/TLTREE.pm
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2008-11-11 17:23:00 +0000
committerKarl Berry <karl@freefriends.org>2008-11-11 17:23:00 +0000
commit9d723c39083647689c6180cfb76b58e18529671f (patch)
treec8dde285a518c785bc258525733aeadfea4ac26a /Master/tlpkg/TeXLive/TLTREE.pm
parenta41a7db955e28248a752c8ca95d78cc8458a391f (diff)
remove extra explicit warn of newline
git-svn-id: svn://tug.org/texlive/trunk@11258 c570f23f-e606-0410-a88d-b1316a301751
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);