1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--- Makefile.PL.orig 2006-07-12 09:37:17.753171250 +0200
+++ Makefile.PL 2006-07-12 09:38:54.031188250 +0200
@@ -41,9 +41,9 @@
#------------------------------------------------------------------------
-our $LATEX = ttprompt('latex path', find_program($ENV{PATH}, "latex"));
-our $PDFLATEX = ttprompt('pdflatex path', find_program($ENV{PATH}, "pdflatex"));
-our $DVIPS = ttprompt('dvips path', find_program($ENV{PATH}, "dvips"));
+our $LATEX = '/usr/bin/latex';
+our $PDFLATEX = '/usr/bin/pdflatex';
+our $DVIPS = '/usr/bin/dvips';
fix_file(catfile('lib','Template','Latex.pm'), '$LATEX', $LATEX);
fix_file(catfile('lib','Template','Latex.pm'), '$PDFLATEX', $PDFLATEX);
|