diff options
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 |