Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/devmanual:master commit in: general-concepts/use-flags/
Date: Sat, 10 Apr 2021 07:03:29
Message-Id: 1618038132.6639f3afc0f1abfbb89cd7abd9d0dd74965bebe2.ulm@gentoo
1 commit: 6639f3afc0f1abfbb89cd7abd9d0dd74965bebe2
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 2 07:16:12 2021 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 10 07:02:12 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=6639f3af
7
8 general-concepts/use-flags: Use += operator in example
9
10 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
11
12 general-concepts/use-flags/text.xml | 6 +++---
13 1 file changed, 3 insertions(+), 3 deletions(-)
14
15 diff --git a/general-concepts/use-flags/text.xml b/general-concepts/use-flags/text.xml
16 index 54675f3..d5aae0c 100644
17 --- a/general-concepts/use-flags/text.xml
18 +++ b/general-concepts/use-flags/text.xml
19 @@ -301,11 +301,11 @@ src_configure() {
20 local myconf
21
22 if use ssl &amp;&amp; use gnutls ; then
23 - myconf="${myconf} --enable-ssl --with-ssl=gnutls"
24 + myconf+=" --enable-ssl --with-ssl=gnutls"
25 elif use ssl &amp;&amp; ! use gnutls ; then
26 - myconf="${myconf} --enable-ssl --with-ssl=openssl"
27 + myconf+=" --enable-ssl --with-ssl=openssl"
28 else
29 - myconf="${myconf} --disable-ssl"
30 + myconf+=" --disable-ssl"
31 fi
32
33 econf \