gnu: astyle: Don't build static or debug libraries.

* gnu/packages/code.scm (astyle)[arguments]: Build only the "release"
and "shared" targets we actually care about.
This commit is contained in:
Tobias Geerinckx-Rice 2023-09-24 02:00:00 +02:00
parent cf6bbf185d
commit ee6b92a99b
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -850,7 +850,7 @@ (define-public astyle
#:make-flags
#~(list (string-append "prefix=" #$output)
"INSTALL=install"
"all")
"release" "shared")
#:modules '((guix build gnu-build-system) ;FIXME use %default-modules
(guix build utils)
(ice-9 regex))