gnu: calibre: Fix QTWEBENGINEPROCESS_PATH wrapping.
authorSergey Trofimov <sarg@sarg.org.ru>
Sat, 21 Nov 2020 10:11:03 +0000 (11:11 +0100)
committerChristopher Baines <mail@cbaines.net>
Sat, 28 Nov 2020 16:33:32 +0000 (16:33 +0000)
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>
gnu/packages/ebook.scm

index b7b2113..a23c677 100644 (file)
                   (lambda (binary)
                     (wrap-program binary
                       ;; Make QtWebEngineProcess available.
-                      `("QTWEBENGINEPROCESS_PATH" ":" =
+                      `("QTWEBENGINEPROCESS_PATH" =
                         ,(list (string-append
                                 qtwebengine
                                 "/lib/qt5/libexec/QtWebEngineProcess")))))