the qif-import file is only searched for in the installation directory, it is
not loaded as specified using the --share-dir option given by the gnucash
script.
here's my quick hack to go into main.scm (replacing the previous load-path
manipulation)
(gnc:config-var-value-set!
gnc:*load-path* #f
(let loop ((load-path (gnc:config-var-value-get gnc:*load-path*)))
(if (null? load-path) '()
(cons
(string-append (car load-path) "/printing")
(cons
(string-append (car load-path) "/qif-import")
(cons
(car load-path)
(loop (cdr load-path))))))))
Bryan
--
-------------
Bryan Larsen, Senior Software Engineer & fall guy
Analog Design Automation: Analog Circuit Synthesis? Problem Solved.
--
Gnucash Developer's List
To unsubscribe send empty email to: [EMAIL PROTECTED]