From fb17e7b1b7a3dd2705f96515ea8e8ad9948811dd Mon Sep 17 00:00:00 2001 From: Vladislav Zavjalov Date: Mon, 13 Dec 2010 04:25:48 +0300 Subject: [PATCH] w_library.c: fix error message (old debian patch) --- xfig/src/w_library.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xfig/src/w_library.c b/xfig/src/w_library.c index 8afd324..f821195 100644 --- a/xfig/src/w_library.c +++ b/xfig/src/w_library.c @@ -1362,7 +1362,7 @@ MakeLibrary(void) path = appres.library_dir; if (stat(path, &st) != 0) { /* no such file */ - file_msg("Can't find %s, no libraries available", path); + file_msg("Can't find %s, no libraries available, please install package xfig-libs", path); return 0; } else if (S_ISDIR(st.st_mode)) { /* if it is directory, scan the sub-directories and search libraries */ -- 2.24.1