summaryrefslogtreecommitdiff
path: root/lib/sbin/ThornGuide.pl
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-04-22 20:39:13 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-04-22 20:39:13 +0000
commitc7b815c1a808da5432668e02c46e4dc97b23a3fb (patch)
tree78f389ec801d09995993117b0061e292dfae86a9 /lib/sbin/ThornGuide.pl
parentfe6cd2236442fedc627c4f58c2806b06d841437c (diff)
Bug fixes ... more to come
git-svn-id: http://svn.cactuscode.org/flesh/trunk@2745 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/sbin/ThornGuide.pl')
-rw-r--r--lib/sbin/ThornGuide.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/sbin/ThornGuide.pl b/lib/sbin/ThornGuide.pl
index 0ecb4ca4..901a8990 100644
--- a/lib/sbin/ThornGuide.pl
+++ b/lib/sbin/ThornGuide.pl
@@ -225,13 +225,15 @@ sub Read_Thorn_Doc
$tmp2 =~ s/\_/\\\_/g;
$tmp = $thorn;
$tmp=~ s/\_/\\\_/g;
+ my $tmp3 = "${arrangement}_${thorn}_inter";
+ $tmp3 =~ tr/A-Z/a-z/;
if (-e $pathandfile) {
$contents = "Could not parse latex documentation for $tmp2/$tmp($file)";
} else {
$contents = "Could not find latex documentation for $tmp2/$tmp ($file)";
}
$contents .= "\n\n\\include{${arrangement}\_${thorn}\_param}\n";
- $contents .= "\n\\include{${arrangement}\_${thorn}\_inter}\n";
+ $contents .= "\n\\include{$tmp3}\n";
$contents .= "\n\\include{${arrangement}\_${thorn}\_schedule}\n";
}