mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: abbaye: Fix install phase.
* gnu/packages/games (abbaye): Create '/share/pixmaps' directory before installing.
This commit is contained in:
parent
bc0b89bb3e
commit
0c645f0bd1
1 changed files with 2 additions and 1 deletions
|
@ -168,7 +168,8 @@ (define input-directories
|
|||
(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.
|
||||
|
|
Loading…
Reference in a new issue