diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-09-24 02:00:00 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-09-24 02:00:00 +0200 |
commit | ee6b92a99b2898175af3e53b11d61c6f985df08b (patch) | |
tree | 1b08fcdfcc2567c1250fa1281af229bb660b99d2 /gnu/packages | |
parent | cf6bbf185de5d025e6d07b8e9b5a2dbbf0386c6b (diff) | |
download | guix-ee6b92a99b2898175af3e53b11d61c6f985df08b.tar.gz |
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.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/code.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm index 8835272ce4..d408e851bb 100644 --- a/gnu/packages/code.scm +++ b/gnu/packages/code.scm @@ -850,7 +850,7 @@ Objective@tie{}C, D, Java, Pawn, and Vala). Features: #: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)) |