mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
On windows, deactivate gnucash's extra de-quoting of path names that is done on the GNC_MODULE_PATH env variable.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14542 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2006-07-18 Christian Stimming <stimming@tuhh.de>
|
||||
|
||||
* src/gnc-module/gnc-module.c: On windows, deactivate gnucash's
|
||||
extra de-quoting of path names that is done on the GNC_MODULE_PATH
|
||||
env variable.
|
||||
|
||||
2006-07-16 Derek Atkins <derek@ihtfp.com>
|
||||
|
||||
* configure.in:
|
||||
|
||||
@@ -67,6 +67,13 @@ gnc_module_system_search_dirs(void)
|
||||
{
|
||||
switch(*cpos)
|
||||
{
|
||||
#ifndef G_OS_WIN32
|
||||
/* On windows, with '\' as the directory separator character,
|
||||
this additional de-quoting will make every path processing
|
||||
fail miserably. Anyway this should probably be thrown out
|
||||
altogether, because this additional level of de-quoting
|
||||
(after shell quoting) is completely unexpected and
|
||||
uncommon. */
|
||||
case '\\':
|
||||
if(!escchar)
|
||||
{
|
||||
@@ -78,6 +85,7 @@ gnc_module_system_search_dirs(void)
|
||||
escchar = FALSE;
|
||||
}
|
||||
break;
|
||||
#endif
|
||||
|
||||
case ':':
|
||||
if(!escchar)
|
||||
|
||||
Reference in New Issue
Block a user