summaryrefslogtreecommitdiff
path: root/Build/source/texk/tetex
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2012-07-30 00:35:24 +0000
committerNorbert Preining <preining@logic.at>2012-07-30 00:35:24 +0000
commitabbf7f69b9adb32fcec0d5772a51c76f71feaace (patch)
tree42875ac0639a9788d5b4e6367f49dffee1401ce8 /Build/source/texk/tetex
parentfe32258562977401195cca3076b1e37bdf9c836a (diff)
support multi entry TEXMFLOCAL in updmap
inform user about which config files is used for writing git-svn-id: svn://tug.org/texlive/trunk@27239 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/tetex')
-rw-r--r--Build/source/texk/tetex/ChangeLog5
-rwxr-xr-xBuild/source/texk/tetex/updmap.pl72
2 files changed, 38 insertions, 39 deletions
diff --git a/Build/source/texk/tetex/ChangeLog b/Build/source/texk/tetex/ChangeLog
index 7521e3a14ac..f05359eebc9 100644
--- a/Build/source/texk/tetex/ChangeLog
+++ b/Build/source/texk/tetex/ChangeLog
@@ -1,3 +1,8 @@
+2012-07-30 Norbert Preining <preining@logic.at>
+
+ * updmap.pl (main): support for multiple entry TEXMFLOCAL.
+ Tell the user which config files is used for writing.
+
2012-07-23 Karl Berry <karl@tug.org>
* updmap.pl (help): we have both --showoption and --showoptions.
diff --git a/Build/source/texk/tetex/updmap.pl b/Build/source/texk/tetex/updmap.pl
index b79e95a7101..2049cfa2640 100755
--- a/Build/source/texk/tetex/updmap.pl
+++ b/Build/source/texk/tetex/updmap.pl
@@ -220,43 +220,35 @@ sub main {
push @used_files, (win32() ? lc($f) : $f);
}
#
- chomp(my $TEXMFLOCAL =`kpsewhich --var-value=TEXMFLOCAL`);
+ chomp(my $TEXMFLOCALVAR =`kpsewhich --expand-path='\$TEXMFLOCAL'`);
+ my @TEXMFLOCAL = split /:/ , $TEXMFLOCALVAR;
chomp(my $TEXMFHOME =`kpsewhich --var-value=TEXMFHOME`);
if (win32()) {
- $TEXMFLOCAL = lc($TEXMFLOCAL);
+ @TEXMFLOCAL = lc(@TEXMFLOCAL);
$TEXMFHOME = lc($TEXMFHOME);
}
#
# search for TEXMFLOCAL/web2c/updmap.cfg
- # see compatibility with updmap-local.cfg below
- my $found = 0;
- my $TMLabs = Cwd::abs_path($TEXMFLOCAL);
- if ($TMLabs) {
- for my $f (@used_files) {
- my $absf = Cwd::abs_path($f); #should always work
- if ($absf =~ m/^\Q$TMLabs\E/) {
- $found = 1;
- last;
- }
+ # check for compatibility with old updmap-local.cfg
+ my @tmlused;
+ for my $tml (@TEXMFLOCAL) {
+ my $TMLabs = Cwd::abs_path($tml);
+ next if (!$TMLabs);
+ my $oldfound = 0;
+ if (-r "$TMLabs/web2c/updmap-local.cfg") {
+ push @tmlused, "$TMLabs/web2c/updmap-local.cfg";
+ warning("Old configuration file\n $TMLabs/web2c/updmap-local.cfg\nfound! ");
+ $oldfound = 1;
}
- }
- #
- # backward compatibility with TL2011 and before updmap-local.cfg
- # we read this instead of TEXMFLOCAL/web2c/updmap.cfg, but give
- # a big fat warning
- my $old_updmap_local_found = 0;
- if (-r "$TMLabs/web2c/updmap-local.cfg") {
- $old_updmap_local_found = 1;
- warning("Old configuration file TEXMFLOCAL/web2c/updmap-local.cfg found!\n");
- if ($found) {
- warning("Will read this file *instead* of TEXMFLOCAL/web2c/updmap.cfg!!!\n");
- # rest of the action is done in the reordering of cfg files
- } else {
- # if TEXMFLOCAL updmap.cfg does not exist, we have to make sure
- # that the replacement is added to the list of updmap files
- push @used_files, "$TMLabs/web2c/updmap-local.cfg";
+ if (-r "$TMLabs/web2c/updmap.cfg") {
+ if ($oldfound) {
+ warning("Will read it *instead* of\n $TMLabs/web2c/updmap.cfg\n");
+ } else {
+ push @tmlused, "$TMLabs/web2c/updmap.cfg";
+ }
}
- warning("Please consider moving the information from updmap-local.cfg to TEXMFLOCAL/web2c/updmap.cfg\n");
+ warning("Please consider moving the information from updmap-local.cfg to\n $TMLabs/web2c/updmap.cfg\n")
+ if ($oldfound);
}
#
# reorder used files: we move TEXMFLOCAL (if used) just above TEXMFMAIN
@@ -300,27 +292,27 @@ sub main {
# TEXMFMAIN $TEXLIVE/YYYY/texmf/web2c/updmap.cfg
# TEXMFDIST $TEXLIVE/YYYY/texmf-dist/web2c/updmap.cfg
#
- if ($found || $old_updmap_local_found) {
+ if (@tmlused) {
my @tmp;
for my $f (@used_files) {
if ($f =~ m!\Q$TEXMFMAIN/\E!) {
- if ($old_updmap_local_found) {
- push @tmp, "$TEXMFLOCAL/web2c/updmap-local.cfg";
- } else {
- # since we are under if ($found || $old_updmap_local_found)
- # we know that TEXMFLOCAL/web2c/updmap.cfg exists!
- push @tmp, "$TEXMFLOCAL/web2c/updmap.cfg";
- }
+ push @tmp, @tmlused;
push @tmp, $f;
} else {
- if ($f !~ m!\Q$TEXMFLOCAL\E!) {
- push @tmp, $f;
+ my $pushit = 1;
+ for my $tml (@TEXMFLOCAL) {
+ if ($f =~ m!\Q$tml\E!) {
+ $pushit = 0;
+ last;
+ }
}
+ push @tmp, $f if ($pushit);
}
}
@used_files = @tmp;
}
@{$opts{'cnffile'}} = @used_files;
+ #
# determine the config file that we will use for changes
# if in the list of used files contains either one from
# TEXMFHOME or TEXMFCONFIG (which is TEXMFSYSCONFIG in the -sys case)
@@ -346,6 +338,8 @@ sub main {
for my $f (@{$opts{'cnffile'}}) {
print " $f\n";
}
+ print "$prg is using the following updmap.cfg file for writing changes:\n";
+ print " $changes_config_file\n";
}
if ($opts{'listfiles'}) {
# we listed it above, so be done