diff options
author | jgart <jgart@dismail.de> | 2022-03-15 18:00:56 -0400 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2022-03-22 15:29:32 +0100 |
commit | 18119fe288166ff480ca27a1351b09e9c31c1463 (patch) | |
tree | e5fbc9862e6cef3cb4ac7975cd80fb96a1571ef1 | |
parent | bd952b47afb1fef46591dba7701ad7928705a4be (diff) |
packages: Clarify comment about build-system package record field.
* guix/packages.scm (<package>): Clarify that what goes in the build-system
package record field is a build-system record instance.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
-rw-r--r-- | guix/packages.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/packages.scm b/guix/packages.scm index 1c63eb2d3e..a79b36d03d 100644 --- a/guix/packages.scm +++ b/guix/packages.scm @@ -531,7 +531,7 @@ Texinfo. Otherwise, return the string." (name package-name) ; string (version package-version) ; string (source package-source) ; <origin> instance - (build-system package-build-system) ; build system + (build-system package-build-system) ; <build-system> instance (arguments package-arguments ; arguments for the build method (default '()) (thunked)) |