--- latexmk.1.orig 2016-04-22 16:54:06.000000000 -0600 +++ latexmk.1 2016-04-28 20:58:42.170572677 -0600 @@ -998,6 +998,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 2016-04-22 16:53:38.000000000 -0600 +++ latexmk.pl 2016-04-28 20:58:42.173572432 -0600 @@ -963,13 +963,9 @@ else { ## /usr/local/share, depending on the local conventions. ## But /usr/local/lib/latexmk is put in the list for ## compatibility with older versions of latexmk. - @rc_system_files = (); - foreach ( 'LatexMk', 'latexmkrc' ) { - push @rc_system_files, - ( "/opt/local/share/latexmk/$_", - "/usr/local/share/latexmk/$_", - "/usr/local/lib/latexmk/$_" ); - } + ## Fedora change: only look in /etc + @rc_system_files = ( '/etc/latexmk.conf' ); + $search_path_separator = ':'; # Separator of elements in search_path $dvi_update_signal = $signo{USR1}