mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
Fix problem with python and change of PATH
- waits that lyxrc has been read before finding python - when the PATH changes, resets the value
This commit is contained in:
parent
2da0d32771
commit
4e38cf1524
@ -154,8 +154,9 @@ Package::Package(string const & command_line_arg0,
|
||||
std::string const & Package::configure_command() const
|
||||
{
|
||||
if (configure_command_.empty()) {
|
||||
std::string &command = const_cast<std::string&>(configure_command_);
|
||||
FileName const configure_script(addName(system_support().absFileName(), "configure.py"));
|
||||
configure_command_ = os::python() + ' ' +
|
||||
command = os::python() + ' ' +
|
||||
quoteName(configure_script.toFilesystemEncoding()) +
|
||||
with_version_suffix() + " --binary-dir=" +
|
||||
quoteName(FileName(binary_dir().absFileName()).toFilesystemEncoding());
|
||||
|
Loading…
Reference in New Issue
Block a user