system: Define 'GTK_DATA_PREFIX' globally.
Fixes <http://bugs.gnu.org/23200>. Reported by Chris Marusich <cmmarusich@gmail.com>. * gnu/system.scm (operating-system-environment-variables): Add 'GTK_DATA_PREFIX'.
This commit is contained in:
parent
e314ce1bd7
commit
ae05e366be
1 changed files with 5 additions and 0 deletions
|
@ -560,6 +560,11 @@ (define (operating-system-environment-variables os)
|
||||||
("SSL_CERT_DIR" . "/etc/ssl/certs")
|
("SSL_CERT_DIR" . "/etc/ssl/certs")
|
||||||
("SSL_CERT_FILE" . "/etc/ssl/certs/ca-certificates.crt")
|
("SSL_CERT_FILE" . "/etc/ssl/certs/ca-certificates.crt")
|
||||||
("GIT_SSL_CAINFO" . "/etc/ssl/certs/ca-certificates.crt")
|
("GIT_SSL_CAINFO" . "/etc/ssl/certs/ca-certificates.crt")
|
||||||
|
|
||||||
|
;; 'GTK_DATA_PREFIX' must name one directory where GTK+ themes are
|
||||||
|
;; searched for.
|
||||||
|
("GTK_DATA_PREFIX" . "/run/current-system/profile")
|
||||||
|
|
||||||
;; By default, applications that use D-Bus, such as Emacs, abort at startup
|
;; By default, applications that use D-Bus, such as Emacs, abort at startup
|
||||||
;; when /etc/machine-id is missing. Make sure these warnings are non-fatal.
|
;; when /etc/machine-id is missing. Make sure these warnings are non-fatal.
|
||||||
("DBUS_FATAL_WARNINGS" . "0")))
|
("DBUS_FATAL_WARNINGS" . "0")))
|
||||||
|
|
Loading…
Reference in a new issue