mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
*** empty log message ***
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@2141 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
53b1e83885
commit
75e96e2ee8
@ -20,15 +20,17 @@
|
||||
(gnc:depend "report.scm")
|
||||
(gnc:depend "report/report-list.scm")
|
||||
|
||||
(gnc:config-var-value-set! gnc:*load-path* #f
|
||||
(cons (string-append gnc:_share-dir-default_
|
||||
"/scm/qif-import")
|
||||
(gnc:config-var-value-get gnc:*load-path*)))
|
||||
|
||||
(gnc:config-var-value-set! gnc:*load-path* #f
|
||||
(cons (string-append gnc:_share-dir-default_
|
||||
"/scm/printing")
|
||||
(gnc:config-var-value-get gnc:*load-path*)))
|
||||
(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))))))))
|
||||
|
||||
(gnc:depend "qif-import.scm")
|
||||
(gnc:depend "print-check.scm")
|
||||
|
Loading…
Reference in New Issue
Block a user