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:35 +0000 |
commit | f4d139d02f0b0404540b74f3249de050b519b880 (patch) | |
tree | 0711c3fadc7f6a1e3e40a8602e9039520bb7f154 /gnu/packages | |
parent | a30627d82bd53ab048410586d44ba1debc1d1010 (diff) |
gnu: qutebrowser: 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/web-browsers.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm index 51af66ef54..bf1d45e5cc 100644 --- a/gnu/packages/web-browsers.scm +++ b/gnu/packages/web-browsers.scm @@ -538,7 +538,7 @@ interface.") (assoc-ref inputs "qtwebengine") "/lib/qt5/libexec/QtWebEngineProcess"))) (wrap-program bin - `("QTWEBENGINEPROCESS_PATH" ":" prefix (,qt-process-path))) + `("QTWEBENGINEPROCESS_PATH" = (,qt-process-path))) #t)))))) (home-page "https://qutebrowser.org/") (synopsis "Minimal, keyboard-focused, vim-like web browser") |