mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Package.cpp: use 16x environment variable (This should be done automatically for new major releases.)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25810 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
734e22c4d3
commit
7305378c07
@ -461,11 +461,11 @@ get_system_support_dir(FileName const & abs_binary,
|
||||
return path;
|
||||
}
|
||||
|
||||
// 2. Use the "LYX_DIR_15x" environment variable.
|
||||
path = extract_env_var_dir("LYX_DIR_15x");
|
||||
// 2. Use the "LYX_DIR_16x" environment variable.
|
||||
path = extract_env_var_dir("LYX_DIR_16x");
|
||||
if (!path.empty()) {
|
||||
searched_dirs.push_back(path);
|
||||
if (check_env_var_dir(path, chkconfig_ltx, "LYX_DIR_15x"))
|
||||
if (check_env_var_dir(path, chkconfig_ltx, "LYX_DIR_16x"))
|
||||
return path;
|
||||
}
|
||||
|
||||
@ -556,7 +556,7 @@ get_system_support_dir(FileName const & abs_binary,
|
||||
"having searched\n"
|
||||
"\t%1$s\n"
|
||||
"Use the '-sysdir' command line parameter or "
|
||||
"set the environment variable LYX_DIR_15x to "
|
||||
"set the environment variable LYX_DIR_16x to "
|
||||
"the LyX system directory containing the file "
|
||||
"`chkconfig.ltx'."),
|
||||
from_utf8(searched_dirs_str)));
|
||||
@ -577,8 +577,10 @@ bool userSupportDir(FileName const & default_user_support_dir,
|
||||
if (!result.empty())
|
||||
return true;
|
||||
|
||||
// 2. Use the LYX_USERDIR_15x environment variable.
|
||||
result = extract_env_var_dir("LYX_USERDIR_15x");
|
||||
// 2. Use the LYX_USERDIR_16x environment variable.
|
||||
// FIXME We need to iherit the atual version number from elsewhere other-
|
||||
// wise we will forget to update this for new major releases
|
||||
result = extract_env_var_dir("LYX_USERDIR_16x");
|
||||
if (!result.empty())
|
||||
return true;
|
||||
|
||||
|
@ -94,7 +94,7 @@ public:
|
||||
|
||||
/** The user_support directory was set explicitly using either
|
||||
* the -userdir command line switch or
|
||||
* the LYX_USERDIR_15x environment variable.
|
||||
* the LYX_USERDIR_16x environment variable.
|
||||
*/
|
||||
bool explicit_user_support() const { return explicit_user_support_dir_; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user