diff options
author | 宋文武 <iyzsong@gmail.com> | 2016-08-06 18:43:04 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2016-08-23 19:46:52 +0800 |
commit | 8ac70c7ff331918ecb105d1ae849774ae7520362 (patch) | |
tree | bc40d99ac196b204ec69ff8d8cc8f413912b43be | |
parent | 5613c27d9334a32911ad9731806be1ab9c4f6e1a (diff) | |
download | patches-8ac70c7ff331918ecb105d1ae849774ae7520362.tar patches-8ac70c7ff331918ecb105d1ae849774ae7520362.tar.gz |
gnu: gnome-themes-standard: Don't install 'icon-theme.cache'.
* gnu/packages/gnome.scm (gnome-themes-standard)[arguments]: New field.
-rw-r--r-- | gnu/packages/gnome.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 1479885243..a3f0a7af2e 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -1673,6 +1673,12 @@ engineering.") (base32 "1p1vvmzfky1ax3yv9ld10xgqwydhmglxpgq3skrfc4539nrq9phw")))) (build-system gnu-build-system) + (arguments + '(#:configure-flags + ;; Don't create 'icon-theme.cache'. + (let* ((coreutils (assoc-ref %build-inputs "coreutils")) + (true (string-append coreutils "/bin/true"))) + (list (string-append "GTK_UPDATE_ICON_CACHE=" true))))) (inputs `(("gtk+" ,gtk+) ("gtk+-2" ,gtk+-2) |