diff options
author | Norbert Preining <preining@logic.at> | 2007-11-19 09:07:22 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2007-11-19 09:07:22 +0000 |
commit | 92bfa1af5b97ddd5caa2d5f57f0c4fea497e8c0c (patch) | |
tree | b1c563592f56c35a7fdb7cccff03a7f36e791098 /Master/tlpkg/bin/tlpfiles | |
parent | eccf95d4124f0d01c2d5bdc66214fb8cd4ec7d63 (diff) |
change location of texlive.tlpdb and texlive.pkgver to
$TeXLive::TLConfig::InfraLocation which is Master/tlpkg
Adapt all the scripts to use the above variable
git-svn-id: svn://tug.org/texlive/trunk@5516 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin/tlpfiles')
-rwxr-xr-x | Master/tlpkg/bin/tlpfiles | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Master/tlpkg/bin/tlpfiles b/Master/tlpkg/bin/tlpfiles index 4ec71bb2ade..41bc8a48f8d 100755 --- a/Master/tlpkg/bin/tlpfiles +++ b/Master/tlpkg/bin/tlpfiles @@ -17,6 +17,7 @@ BEGIN { use strict; +use TeXLive::TLConfig; use TeXLive::TLPDB; use Pod::Usage; use Getopt::Long; @@ -38,7 +39,7 @@ exit (&main ()); sub main { my $Master = "$mydir/../.."; # xx TLPDB should default - my $tlpdb_path = "$Master/texlive.tlpdb"; + my $tlpdb_path = "$Master/$TeXLive::TLConfig::InfraLocation/texlive.tlpdb"; if (@opt_pkgof) { return &do_pkgof ($tlpdb_path, @opt_pkgof); |