From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 286441382C5 for ; Sat, 10 Apr 2021 07:03:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2CD70E088C; Sat, 10 Apr 2021 07:03:28 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 18267E088C for ; Sat, 10 Apr 2021 07:03:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 97DF6340D7F for ; Sat, 10 Apr 2021 07:03:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E948063F for ; Sat, 10 Apr 2021 07:03:24 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1618038132.6639f3afc0f1abfbb89cd7abd9d0dd74965bebe2.ulm@gentoo> Subject: [gentoo-commits] proj/devmanual:master commit in: general-concepts/use-flags/ X-VCS-Repository: proj/devmanual X-VCS-Files: general-concepts/use-flags/text.xml X-VCS-Directories: general-concepts/use-flags/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 6639f3afc0f1abfbb89cd7abd9d0dd74965bebe2 X-VCS-Branch: master Date: Sat, 10 Apr 2021 07:03:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9d7ac314-90bf-4894-9323-36f9b664ac0a X-Archives-Hash: 2c6fc284a036db362bc8f458c70a498c commit: 6639f3afc0f1abfbb89cd7abd9d0dd74965bebe2 Author: Ulrich Müller gentoo org> AuthorDate: Fri Apr 2 07:16:12 2021 +0000 Commit: Ulrich Müller gentoo 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 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 \