Merge pull request #209521 from nevivurn/fix/gnucash-fq-exec
gnucash: exec Finance::Quote helpers directly
This commit is contained in:
commit
589420c6fb
2 changed files with 25 additions and 0 deletions
23
pkgs/applications/office/gnucash/0004-exec-fq-helpers.patch
Normal file
23
pkgs/applications/office/gnucash/0004-exec-fq-helpers.patch
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
diff --git a/gnucash/price-quotes.scm b/gnucash/price-quotes.scm
|
||||||
|
index 8e3ff255f..a6b805fa5 100644
|
||||||
|
--- a/gnucash/price-quotes.scm
|
||||||
|
+++ b/gnucash/price-quotes.scm
|
||||||
|
@@ -44,7 +44,7 @@
|
||||||
|
(define (start-program)
|
||||||
|
(set! program
|
||||||
|
(gnc-spawn-process-async
|
||||||
|
- (list "perl" "-w" gnc:*finance-quote-check*) #t)))
|
||||||
|
+ (list gnc:*finance-quote-check*) #t)))
|
||||||
|
|
||||||
|
(define (get-sources)
|
||||||
|
(when program
|
||||||
|
@@ -119,7 +119,7 @@
|
||||||
|
|
||||||
|
(define (start-quoter)
|
||||||
|
(set! quoter
|
||||||
|
- (gnc-spawn-process-async (list "perl" "-w" gnc:*finance-quote-helper*) #t)))
|
||||||
|
+ (gnc-spawn-process-async (list gnc:*finance-quote-helper*) #t)))
|
||||||
|
|
||||||
|
(define (get-quotes)
|
||||||
|
(when quoter
|
||||||
|
|
|
@ -72,6 +72,8 @@ stdenv.mkDerivation rec {
|
||||||
./0002-disable-gnc-fq-update.patch
|
./0002-disable-gnc-fq-update.patch
|
||||||
# this patch prevents the building of gnucash-valgrind
|
# this patch prevents the building of gnucash-valgrind
|
||||||
./0003-remove-valgrind.patch
|
./0003-remove-valgrind.patch
|
||||||
|
# this patch makes gnucash exec the Finance::Quote helpers directly
|
||||||
|
./0004-exec-fq-helpers.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
# this needs to be an environment variable and not a cmake flag to suppress
|
# this needs to be an environment variable and not a cmake flag to suppress
|
||||||
|
|
Loading…
Reference in a new issue