commit: 6639f3afc0f1abfbb89cd7abd9d0dd74965bebe2
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 2 07:16:12 2021 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Apr 10 07:02:12 2021 +0000
URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=6639f3af
general-concepts/use-flags: Use += operator in example
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
general-concepts/use-flags/text.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/general-concepts/use-flags/text.xml
b/general-concepts/use-flags/text.xml
index 54675f3..d5aae0c 100644
--- a/general-concepts/use-flags/text.xml
+++ b/general-concepts/use-flags/text.xml
@@ -301,11 +301,11 @@ src_configure() {
local myconf
if use ssl && use gnutls ; then
- myconf="${myconf} --enable-ssl --with-ssl=gnutls"
+ myconf+=" --enable-ssl --with-ssl=gnutls"
elif use ssl && ! use gnutls ; then
- myconf="${myconf} --enable-ssl --with-ssl=openssl"
+ myconf+=" --enable-ssl --with-ssl=openssl"
else
- myconf="${myconf} --disable-ssl"
+ myconf+=" --disable-ssl"
fi
econf \