gnu: conky: Remove redundant MKDIR-P.

* gnu/packages/conky.scm (conky)[arguments]: Remove redundant MKDIR-P.
master
Tobias Geerinckx-Rice 2018-03-02 17:38:28 +01:00
parent 9d13f82da8
commit e6d30cf755
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 2 additions and 2 deletions

View File

@ -60,8 +60,8 @@
#t))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let ((bin (string-append (assoc-ref outputs "out") "/bin")))
(mkdir-p bin)
(let* ((out (assoc-ref outputs "out"))
(bin (string-append out "/bin")))
(install-file "src/conky" bin))
#t)))))
(inputs