diff options
author | Karl Berry <karl@freefriends.org> | 2008-03-01 23:53:49 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-03-01 23:53:49 +0000 |
commit | 3b1bc3b20f93e5b90188979885b4652c540184b5 (patch) | |
tree | 77bb2631ee95a1df3c897b44d7794d21f5a972e8 /Build/source/texk/kpathsea/cnf.c | |
parent | 15b55e65bc7b64a139e2c7e4fdef5ea8a2923f26 (diff) |
reduce warning text when texmf.cnf is not found
git-svn-id: svn://tug.org/texlive/trunk@6796 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/cnf.c')
-rw-r--r-- | Build/source/texk/kpathsea/cnf.c | 5 |
1 files changed, 3 insertions, 2 deletions
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 |