diff options
author | Karl Berry <karl@freefriends.org> | 2007-07-26 18:20:48 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2007-07-26 18:20:48 +0000 |
commit | 9822936304dbeb61750dec27b5bd3ba0491c69e4 (patch) | |
tree | 0aa1d2e5d88ffef826d90782f67f688d16681650 /Build/cdbuild | |
parent | 88bf879fc17cc3d52eafa0c4667732bbfa3bc6a7 (diff) |
mff doc update (22jul07)
git-svn-id: svn://tug.org/texlive/trunk@4662 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/cdbuild')
-rwxr-xr-x | Build/cdbuild/ctan2tds.pl | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Build/cdbuild/ctan2tds.pl b/Build/cdbuild/ctan2tds.pl index 4075dc09e0f..444d05a05a5 100755 --- a/Build/cdbuild/ctan2tds.pl +++ b/Build/cdbuild/ctan2tds.pl @@ -376,6 +376,7 @@ $standardsource='\.fdd|\.dtx|\.ins|\.c$|Makefile|\.drv'; 'epsf', 'NULL', 'epslatex-fr', 'NULL', 'eskdx', 'NULL', # do not move makefiles + 'mff', '\.mfj|\.bat|\.diz', ); %specialfoundry = ( @@ -1369,12 +1370,10 @@ sub dobib{ # source files: sub dosource{ - $sourceformat = $specialsourcefmt{$package}; - if ($sourceformat eq "") { $sourceformat=$standardsourcefmt; } - # default to using specialdocfmt, as we do in setup? - $sourcepatt = $specialsource{$package}; - if ($sourcepatt eq "") { $sourcepatt=$standardsource; } - &install("$DEST/source/$sourceformat/$package",$sourcepatt); + $sourceformat = $specialsourcefmt{$package} || $standardsourcefmt; + # default to using specialdocfmt, as we do in setup? + $sourcepatt = $specialsource{$package} || $standardsource; + &install("$DEST/source/$sourceformat/$package", $sourcepatt); } |