gnu: delta: Remove redundant code.
* gnu/packages/debug.scm (delta)[arguments]: Remove unneeded MKDIR-P calls.
This commit is contained in:
parent
defe0282c2
commit
139ecdee8e
|
@ -66,8 +66,6 @@
|
|||
(bin (string-append out "/bin"))
|
||||
(doc (string-append out "/share/doc/delta-" ,version)))
|
||||
(begin
|
||||
(mkdir-p bin)
|
||||
(mkdir-p doc)
|
||||
(for-each (lambda (h)
|
||||
(install-file h doc))
|
||||
`("License.txt" ,@(find-files "www" ".*\\.html")))
|
||||
|
@ -75,7 +73,7 @@
|
|||
(install-file b bin))
|
||||
`("delta" "multidelta" "topformflat"))))
|
||||
#t))
|
||||
(delete 'configure))))
|
||||
(delete 'configure)))) ; no configure script
|
||||
(home-page "http://delta.tigris.org/")
|
||||
(synopsis "Heuristical file minimizer")
|
||||
(description
|
||||
|
|
Loading…
Reference in New Issue