diff options
-rw-r--r-- | Master/tlpkg/TeXLive/TLPSRC.pm | 4 | ||||
-rwxr-xr-x | Master/tlpkg/bin/tlprm | 5 |
2 files changed, 4 insertions, 5 deletions
diff --git a/Master/tlpkg/TeXLive/TLPSRC.pm b/Master/tlpkg/TeXLive/TLPSRC.pm index 0de0d502933..bab1db1a1bc 100644 --- a/Master/tlpkg/TeXLive/TLPSRC.pm +++ b/Master/tlpkg/TeXLive/TLPSRC.pm @@ -55,14 +55,14 @@ sub from_file { my $srcfile = $_[0]; my $pkgname = TeXLive::TLUtils::basename($srcfile); $pkgname =~ s/\.tlpsrc$//; - + if (! -r "$srcfile") { # if the argument is not readable as is, try looking for it in the # hierarchy where we are. The %INC hash records where packages were # found, so we use that to locate ourselves. (my $trydir = $INC{"TeXLive/TLPSRC.pm"}) =~ s,/[^/]*$,,; chomp ($trydir = `cd $trydir/../tlpsrc && pwd`); # make absolute - my $tryfile = "$trydir/$srcfile.tlpsrc"; + my $tryfile = "$trydir/$pkgname.tlpsrc"; #warn "$trydir\n$tryfile\n"; $srcfile = $tryfile if -r $tryfile; } diff --git a/Master/tlpkg/bin/tlprm b/Master/tlpkg/bin/tlprm index ff64c75993a..14a98ed4370 100755 --- a/Master/tlpkg/bin/tlprm +++ b/Master/tlpkg/bin/tlprm @@ -34,8 +34,7 @@ pod2usage("-exitstatus" => 0, "-verbose" => 2) if $opt_help; exit (&main ()); -sub main -{ +sub main { my $failure_count = 0; chomp (my $Master = `cd $mydir/../.. && pwd`); @@ -55,7 +54,7 @@ sub main } my $tlpsrc = new TeXLive::TLPSRC; - $tlpsrc->from_file ($f); + $tlpsrc->from_file ("$f.tlpsrc"); push (@files, $tlpsrc->_srcfile); # also want to remove the tlpsrc file. # The paths in tlpdb are relative to Master, so we chdir there so |