diff options
-rw-r--r-- | Build/source/texk/kpathsea/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/kpathsea/cnf.c | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/ChangeLog b/Build/source/texk/kpathsea/ChangeLog index c872b197d4a..195dcef9919 100644 --- a/Build/source/texk/kpathsea/ChangeLog +++ b/Build/source/texk/kpathsea/ChangeLog @@ -1,3 +1,8 @@ +2008-03-02 Karl Berry <karl@tug.org> + + * cnf.c (read_all_cnf): change warning text when texmf.cnf is not + found to make it clear we are giving it, and keep it on one line. + 2008-01-29 Peter Breitenlohner <peb@mppmu.mpg.de> * common.ac: replace the private macro KPSE_STRUCT_ST_MTIM diff --git a/Build/source/texk/kpathsea/cnf.c b/Build/source/texk/kpathsea/cnf.c index 8f28e0facf9..f3b8efed19c 100644 --- a/Build/source/texk/kpathsea/cnf.c +++ b/Build/source/texk/kpathsea/cnf.c @@ -197,8 +197,9 @@ read_all_cnf P1H(void) free (*cnf); } free (cnf_files); - } else - WARNING1 ("Configuration file texmf.cnf not found! Searched these directories:\n%s\nTrying to proceed..", cnf_path); + } else { + WARNING1 ("kpathsea: configuration file texmf.cnf not found in these directories: %s", cnf_path); + } } /* Read the cnf files on the first call. Return the first value in the |