diff options
author | Norbert Preining <preining@logic.at> | 2008-10-08 15:46:09 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-10-08 15:46:09 +0000 |
commit | 72ce3aef80a83be32d91aafbd9c8cd8faf2cc70c (patch) | |
tree | 1c7c4df07273967f27c67a4daa3485f281285a54 | |
parent | ba886554f2f94f40becba19b5a6f0129817b9bf5 (diff) |
fix metafun.exe and pdfluatex.exe installation in minimals
git-svn-id: svn://tug.org/texlive/trunk@10892 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/tlpkg/etc/tlrepo-from-minimals.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/tlpkg/etc/tlrepo-from-minimals.pl b/Master/tlpkg/etc/tlrepo-from-minimals.pl index 24c053ccb0a..ce2e397286e 100644 --- a/Master/tlpkg/etc/tlrepo-from-minimals.pl +++ b/Master/tlpkg/etc/tlrepo-from-minimals.pl @@ -75,7 +75,7 @@ if ($opt_context) { system("mkdir -p $tmp/bin/$min_to_tl_arch{$i}"); system("cp -a $source/$dist/bin/context/$i/bin/* $tmp/bin/$min_to_tl_arch{$i}"); if ($i eq "mswin") { - info("WARNING: How should we ship metafun for Win32???\n"); + system("cp -a $tmp/bin/$min_to_tl_arch{$i}/mpost.exe $tmp/bin/$min_to_tl_arch{$i}/metafun.exe"); } else { system("ln -s mpost $tmp/bin/$min_to_tl_arch{$i}/metafun"); } @@ -120,7 +120,7 @@ if ($opt_luatex) { system("mkdir -p $tmp/bin/$min_to_tl_arch{$i}"); system("cp -a $source/$dist/bin/luatex/$i/bin/* $tmp/bin/$min_to_tl_arch{$i}"); if ($i eq "mswin") { - info("WARNING: How should we ship pdfluatex for Win32???\n"); + system("cp -a $tmp/bin/$min_to_tl_arch{$i}/luatex.exe $tmp/bin/$min_to_tl_arch{$i}/pdfluatex.exe"); } else { system("ln -s luatex $tmp/bin/$min_to_tl_arch{$i}/pdfluatex"); } |