gnu: netpbm: Delete files natively.

* gnu/packages/netpbm.scm (netpbm)[arguments]: Delete files with
DELETE-FILE-RECURSIVELY instead of invoking ‘rm’.
This commit is contained in:
Tobias Geerinckx-Rice 2020-04-01 19:04:32 +02:00
parent 079ffbcfaf
commit 475d5d8d15
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -171,12 +171,10 @@ (define-syntax drop
(apply invoke "make" "package"
(string-append "pkgdir=" out) make-flags)
;; Remove superfluous files.
(invoke "rm" "-r" (string-append out "/link"))
(invoke "rm" "-r" (string-append out "/misc"))
(with-directory-excursion out
(for-each delete-file
'("config_template" "pkginfo" "README"
"VERSION")))
(for-each delete-file-recursively
'("config_template" "pkginfo" "README" "VERSION"
"link/" "misc/")))
#t))))))
(synopsis "Toolkit for manipulation of images")
(description