summaryrefslogtreecommitdiff
path: root/Master/install-tl
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2008-04-24 08:37:57 +0000
committerNorbert Preining <preining@logic.at>2008-04-24 08:37:57 +0000
commit858be961d484a194af6ee53d299a1852d37ddc5b (patch)
treeecc342a02d070b778de1dc4b866482bfa8d5481c /Master/install-tl
parentb932338429235460cee5a2a055e61a0182d4dd41 (diff)
revert texconf paper invcation, fix hundreds of things
git-svn-id: svn://tug.org/texlive/trunk@7625 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-xMaster/install-tl5
1 files changed, 3 insertions, 2 deletions
diff --git a/Master/install-tl b/Master/install-tl
index b4f7795e8a9..5b72c01d91b 100755
--- a/Master/install-tl
+++ b/Master/install-tl
@@ -807,10 +807,11 @@ sub do_postinst_stuff {
"$TEXMFSYSVAR/dvips/config");
# now we have to fix up dvipdfm config file to contain the right
# piping command
+ mkdirhier("$TEXMFSYSVAR/texmf/dvipdfm/config");
open(DVIPDFMCONFIGDIST, "<$TEXDIR/texmf/dvipdfm/config/config")
or die("Cannot open $TEXDIR/texmf/dvipdfm/config/config");
- open(DVIPDFMCONFIGINST, ">$TEXMFSYSVAR/dvipdfm/config")
- or die("Cannot open $TEXMFSYSVAR/dvipdfm/config");
+ open(DVIPDFMCONFIGINST, ">$TEXMFSYSVAR/dvipdfm/config/config")
+ or die("Cannot open $TEXMFSYSVAR/dvipdfm/config/config");
while (<DVIPDFMCONFIGDIST>) {
if (m/^D /) {
print DVIPDFMCONFIGINST 'D "epstopdf --outfile=%o --nocompress %i"', "\n";