gnu: conky: Remove redundant MKDIR-P.
* gnu/packages/conky.scm (conky)[arguments]: Remove redundant MKDIR-P.
This commit is contained in:
parent
9d13f82da8
commit
e6d30cf755
|
@ -60,8 +60,8 @@
|
||||||
#t))
|
#t))
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let ((bin (string-append (assoc-ref outputs "out") "/bin")))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
(mkdir-p bin)
|
(bin (string-append out "/bin")))
|
||||||
(install-file "src/conky" bin))
|
(install-file "src/conky" bin))
|
||||||
#t)))))
|
#t)))))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Loading…
Reference in New Issue