diff options
author | Norbert Preining <preining@logic.at> | 2020-09-18 05:52:26 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2020-09-18 05:52:26 +0000 |
commit | 2108bbc66448cd95acf2d0c1f286fb952a786c04 (patch) | |
tree | 98c3f1e55d23abef7f272bc5629f09e0f51d5e84 | |
parent | 274d19816934ef42f1e081dee982cd8a1828e413 (diff) |
fix for tlmgr csv printing typo relocatable, by Yihui
git-svn-id: svn://tug.org/texlive/trunk@56372 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/texmf-dist/scripts/texlive/tlmgr.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/texlive/tlmgr.pl b/Master/texmf-dist/scripts/texlive/tlmgr.pl index 262bd702799..7b26af005b0 100755 --- a/Master/texmf-dist/scripts/texlive/tlmgr.pl +++ b/Master/texmf-dist/scripts/texlive/tlmgr.pl @@ -3958,7 +3958,7 @@ sub show_one_package_csv { } elsif ($d eq "installed") { push @out, $is_installed; } elsif ($d eq "relocatable") { - push @out, ($tlp->relocatable ? 1 : 0); + push @out, ($tlp->relocated ? 1 : 0); } elsif ($d eq "cat-version") { push @out, ($tlp->cataloguedata->{'version'} || ""); } elsif ($d eq "cat-date") { |