summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2023-05-16 17:23:00 +0200
committerLudovic Courtès <ludo@gnu.org>2023-05-18 19:20:58 +0200
commitfddf97456c473b1231e08aea5e8096f42f2a63a8 (patch)
treeedd82f756a4099485d0d547b8e85d8d43aedfff3 /doc
parent5b700945fb0b33eec410de8979cae2fbf0d4f118 (diff)
doc: Change '--with-configure-flag' example to something that works.
Passing '-DBUILD_COMPLEX=OFF' to lapack would eventually lead to a link error. Reported by Florian Pelz <pelzflorian@pelzflorian.de>. * doc/guix.texi (Package Transformation Options): Change '--with-configure-flag' example. * etc/news.scm: Likewise.
Diffstat (limited to 'doc')
-rw-r--r--doc/guix.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/guix.texi b/doc/guix.texi
index 60972f408d..5851af4092 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -12990,7 +12990,7 @@ builds @code{lapack}:
@example
guix build lapack \
- --with-configure-flag=lapack=-DBUILD_COMPLEX=OFF
+ --with-configure-flag=lapack=-DBUILD_SHARED_LIBS=OFF
@end example
@quotation Note