diff options
author | Sergey Trofimov <sarg@sarg.org.ru> | 2020-11-21 11:11:03 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-11-28 16:33:32 +0000 |
commit | a30627d82bd53ab048410586d44ba1debc1d1010 (patch) | |
tree | 1f5cfc3f7054c82e8d50e6adcfa0bada4c7ca2e3 /gnu/packages | |
parent | 0ae0efd9a3499bced46178d52db2d83d0123f34c (diff) |
gnu: calibre: Fix QTWEBENGINEPROCESS_PATH wrapping.
Even thought this is named PATH, it's not a search path, instead the value is
assumed to be the location of the executable.
* gnu/packages/ebook.scm (calibre)[arguments]: Fix QTWEBENGINEPROCESS_PATH
wrapping.
Signed-off-by: Christopher Baines <mail@cbaines.net>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/ebook.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm index b7b2113db4..a23c677880 100644 --- a/gnu/packages/ebook.scm +++ b/gnu/packages/ebook.scm @@ -281,7 +281,7 @@ (lambda (binary) (wrap-program binary ;; Make QtWebEngineProcess available. - `("QTWEBENGINEPROCESS_PATH" ":" = + `("QTWEBENGINEPROCESS_PATH" = ,(list (string-append qtwebengine "/lib/qt5/libexec/QtWebEngineProcess"))))) |