1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-23 01:25:57 +02:00

gnu: abbaye: Fix install phase.

* gnu/packages/games (abbaye): Create '/share/pixmaps' directory
  before installing.
This commit is contained in:
David Thompson
2014-11-23 11:29:41 -05:00
parent bc0b89bb3e
commit 0c645f0bd1
+2 -1
View File
@@ -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.