Skip to content
Snippets Groups Projects
Commit 0c645f0b authored by David Thompson's avatar David Thompson
Browse files

gnu: abbaye: Fix install phase.

* gnu/packages/games (abbaye): Create '/share/pixmaps' directory
  before installing.
parent bc0b89bb
No related branches found
No related tags found
No related merge requests found
......@@ -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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment