diff options
author | David Thompson <davet@gnu.org> | 2014-11-23 11:29:41 -0500 |
---|---|---|
committer | David Thompson <davet@gnu.org> | 2014-11-23 11:30:44 -0500 |
commit | 0c645f0bd118ade38ba62ee4baa147a9d87d0d14 (patch) | |
tree | 2d65a2f88a51e746b9fa39b646bea7d3e502985a /gnu | |
parent | bc0b89bb3eca3adf35230d1fe7f89664762be4e8 (diff) | |
download | gnu-guix-0c645f0bd118ade38ba62ee4baa147a9d87d0d14.tar gnu-guix-0c645f0bd118ade38ba62ee4baa147a9d87d0d14.tar.gz |
gnu: abbaye: Fix install phase.
* gnu/packages/games (abbaye): Create '/share/pixmaps' directory
before installing.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/games.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index e79be3fa49..db878b033d 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -168,7 +168,8 @@ scriptable with Guile.") (let ((prefix (assoc-ref outputs "out"))) ;; Create directories that the makefile assumes exist. (mkdir-p (string-append prefix "/bin")) - (mkdir-p (string-append prefix "/share/applications")))) + (mkdir-p (string-append prefix "/share/applications")) + (mkdir-p (string-append prefix "/share/pixmaps")))) ;; No configure script. (alist-delete 'configure %standard-phases)))) #:tests? #f)) ;; No check target. |