mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Add default path to server pipe (cmake build + unix)
Actually the change is affecting only builds if 1.) Using cmake build 2.) on unix To use it on cygwin: one has to patch development/cygwin/lyxrc.dist.in MacOSX: -//- development/MacOSX/lyxrc.dist.in We need also a Windows-version Also the compilation with automake lacks the handling of development/unix/lyxrc.dist.in
This commit is contained in:
parent
5ec95f703c
commit
689f26d247
@ -13,4 +13,5 @@
|
||||
Format 25
|
||||
|
||||
\texinputs_prefix ".:@LYX_ABS_INSTALLED_DATADIR@tex"
|
||||
\serverpipe "$$User/.lyxpipe"
|
||||
|
||||
|
@ -670,7 +670,8 @@ LyXRC::ReturnValues LyXRC::read(Lexer & lexrc, bool check_format)
|
||||
|
||||
case RC_SERVERPIPE:
|
||||
if (lexrc.next())
|
||||
lyxpipes = os::internal_path(lexrc.getString());
|
||||
lyxpipes = subst(os::internal_path(lexrc.getString()), "$$User",
|
||||
package().user_support().absFileName());
|
||||
break;
|
||||
|
||||
case RC_CT_ADDITIONS_UNDERLINED:
|
||||
|
Loading…
Reference in New Issue
Block a user