2019-03-15 01:23:19 +00:00
|
|
|
--- latexmk.1.orig 2019-03-14 08:39:20.000000000 -0600
|
|
|
|
+++ latexmk.1 2019-03-14 18:12:21.087548186 -0600
|
|
|
|
@@ -1301,6 +1301,7 @@ system RC file, in the following order,
|
2014-01-27 17:46:25 +00:00
|
|
|
"/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".
|
2017-01-14 16:49:01 +00:00
|
|
|
On a MS-Windows system it looks for "C:\\latexmk\\LatexMk".
|
2014-01-27 17:46:25 +00:00
|
|
|
On a cygwin system (i.e., a MS-Windows system in which Perl is
|
2017-01-14 16:49:01 +00:00
|
|
|
that of cygwin), \fIlatexmk\fR reads the first it finds of
|
2019-03-15 01:23:19 +00:00
|
|
|
--- latexmk.pl.orig 2019-03-14 07:42:40.000000000 -0600
|
|
|
|
+++ latexmk.pl 2019-03-14 18:12:21.089548181 -0600
|
|
|
|
@@ -935,13 +935,9 @@ else {
|
2007-03-30 15:34:53 +00:00
|
|
|
## /usr/local/share, depending on the local conventions.
|
2014-12-09 23:59:37 +00:00
|
|
|
## But /usr/local/lib/latexmk is put in the list for
|
2007-03-30 15:34:53 +00:00
|
|
|
## compatibility with older versions of latexmk.
|
2014-12-09 23:59:37 +00:00
|
|
|
- @rc_system_files = ();
|
|
|
|
- foreach ( 'LatexMk', 'latexmkrc' ) {
|
|
|
|
- push @rc_system_files,
|
|
|
|
- ( "/opt/local/share/latexmk/$_",
|
|
|
|
- "/usr/local/share/latexmk/$_",
|
|
|
|
- "/usr/local/lib/latexmk/$_" );
|
|
|
|
- }
|
2009-12-01 16:32:27 +00:00
|
|
|
+ ## Fedora change: only look in /etc
|
|
|
|
+ @rc_system_files = ( '/etc/latexmk.conf' );
|
2014-12-09 23:59:37 +00:00
|
|
|
+
|
2007-03-30 15:34:53 +00:00
|
|
|
$search_path_separator = ':'; # Separator of elements in search_path
|
|
|
|
|
2014-12-09 23:59:37 +00:00
|
|
|
$dvi_update_signal = $signo{USR1}
|