summaryrefslogtreecommitdiff
path: root/Build/cdbuild
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2007-08-20 12:55:15 +0000
committerKarl Berry <karl@freefriends.org>2007-08-20 12:55:15 +0000
commita5b418efaeb33e9ffe036ba3b54fa12397ac7705 (patch)
tree80f29affef80ea1ea042e7f87e8c77c99c1ac4d9 /Build/cdbuild
parent2a71f2106a4a2b9758de9beda1917445bd95e399 (diff)
fltpoint generic (luecking 23 Jul 2007 13:47:15)
git-svn-id: svn://tug.org/texlive/trunk@4776 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/cdbuild')
-rwxr-xr-xBuild/cdbuild/ctan2tds.pl9
1 files changed, 6 insertions, 3 deletions
diff --git a/Build/cdbuild/ctan2tds.pl b/Build/cdbuild/ctan2tds.pl
index b09375c506e..d9afbaed0df 100755
--- a/Build/cdbuild/ctan2tds.pl
+++ b/Build/cdbuild/ctan2tds.pl
@@ -453,6 +453,7 @@ $standardfoundry='public';
'eurosym', 'fonts',
'fc', 'fonts',
'fge', 'fonts',
+ 'fltpoint', 'generic',
'fontspec', 'xelatex',
'fourier', 'fonts',
'fouriernc', 'fonts',
@@ -582,6 +583,7 @@ $standardfmt='latex';
'featpost', 'metapost',
'fenixpar', 'generic',
'fge', 'fonts',
+ 'fltpoint', 'generic',
'fontch', 'plain',
'fontspec', 'xelatex',
'fourier', 'fonts',
@@ -669,7 +671,8 @@ $standardins='\.ins';
%specialinsrunner = (
'bullcntr', 'latex', # requires interaction, ugh
- 'mathexam', 'latex -interaction=nonstopmode', # stupid infinite loop
+ 'fltpoint', 'latex -interaction=nonstopmode',
+ 'mathexam', 'latex -interaction=nonstopmode',
);
$standardinsrunner="latex";
@@ -1317,8 +1320,8 @@ sub runins {
my ($thispatt) = @_;
print "\t RUNINS $thispatt\n";
for (grep (/$thispatt/, @filenames)) {
- print "\t RUN $_\n" ;
- &runjob ("yes | $insrunner $_");
+ # do not infinite loop on docstrip "output directory", e.g., fltpoint.
+ &runjob ("yes | sed 5q | $insrunner $_");
}
my $postdelete = $specialins_postdelete{$package};