latexmk/latexmk-conf.patch

26 lines
1.2 KiB
Diff
Raw Normal View History

--- ./latexmk.1.orig 2014-01-15 14:09:21.000000000 -0700
+++ ./latexmk.1 2014-01-27 07:30:00.000000000 -0700
@@ -962,6 +962,7 @@ system RC file, in the following order,
"/opt/local/share/latexmk/LatexMk",
"/usr/local/share/latexmk/LatexMk",
"/usr/local/lib/latexmk/LatexMk".
+ On a Fedora system, it only looks for "/etc/latexmk.conf".
On a MS-WINDOWS system it looks for "C:\\latexmk\\LatexMk".
On a cygwin system (i.e., a MS-Windows system in which Perl is
that of cygwin), \fIlatexmk\fR reads for the first it finds of
--- ./latexmk.pl.orig 2014-01-15 15:37:34.000000000 -0700
+++ ./latexmk.pl 2014-01-27 07:30:00.000000000 -0700
@@ -858,10 +858,8 @@ else {
## /usr/local/share, depending on the local conventions.
## /usr/local/lib/latexmk/LatexMk is put in the list for
## compatibility with older versions of latexmk.
- @rc_system_files =
- ( '/opt/local/share/latexmk/LatexMk',
- '/usr/local/share/latexmk/LatexMk',
- '/usr/local/lib/latexmk/LatexMk' );
2009-12-01 16:32:27 +00:00
+ ## Fedora change: only look in /etc
+ @rc_system_files = ( '/etc/latexmk.conf' );
$search_path_separator = ':'; # Separator of elements in search_path