diff options
author | Norbert Preining <preining@logic.at> | 2008-07-23 18:18:07 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-07-23 18:18:07 +0000 |
commit | 40357d04d33764b2a3846e2d187758395536f5d9 (patch) | |
tree | cf447fbbe3708db1b707c578ec5691aabb302785 /Master/install-tl | |
parent | 2f7da28145eea6400f38c28c629b08ae8c0c2e5b (diff) |
don't use texlua on hpux, but texocnfig paper letter in the installer
git-svn-id: svn://tug.org/texlive/trunk@9723 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-x | Master/install-tl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Master/install-tl b/Master/install-tl index 85abdccf67a..595e44fae24 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -983,7 +983,12 @@ operations might be disturbed.\n\n"; # letter instead of a4 if ($vars{'option_letter'}) { info("Setting default paper size to letter\n"); - system("texlua", "$TEXDIR/texmf/scripts/texlive/texconf.tlu", "--sys", "--noformat", "paper", "letter"); + if (platform() eq "hppa-hpux") { + # we didn't get a texlua binary for hppa-hpux, so try texconfig + system("texconfig", "paper", "letter"); + } else { + system("texlua", "$TEXDIR/texmf/scripts/texlive/texconf.tlu", "--sys", "--noformat", "paper", "letter"); + } } # all formats option |