Revision bf627c4f
Von Bernd Blessmann vor etwa 13 Jahren hinzugefügt
SL/Template/LaTeX.pm | ||
---|---|---|
388 | 388 |
my $latex = $self->_get_latex_path(); |
389 | 389 |
my $old_home = $ENV{HOME}; |
390 | 390 |
my $old_openin_any = $ENV{openin_any}; |
391 |
$ENV{HOME} = $userspath =~ m|^/| ? $userspath : getcwd() . "/" . $userspath;
|
|
391 |
$ENV{HOME} = $userspath =~ m|^/| ? $userspath : getcwd(); |
|
392 | 392 |
$ENV{openin_any} = "p"; |
393 | 393 |
|
394 | 394 |
for (my $run = 1; $run <= 2; $run++) { |
... | ... | |
437 | 437 |
my $latex = $self->_get_latex_path(); |
438 | 438 |
my $old_home = $ENV{HOME}; |
439 | 439 |
my $old_openin_any = $ENV{openin_any}; |
440 |
$ENV{HOME} = $userspath =~ m|^/| ? $userspath : getcwd() . "/" . $userspath;
|
|
440 |
$ENV{HOME} = $userspath =~ m|^/| ? $userspath : getcwd(); |
|
441 | 441 |
$ENV{openin_any} = "p"; |
442 | 442 |
|
443 | 443 |
for (my $run = 1; $run <= 2; $run++) { |
Auch abrufbar als: Unified diff
$userspath nicht an das aktuelle Verzeichnis anhängen, ...
da vorher schon in $userspath gewechselt wurde.