Gentoo Archives: gentoo-dev

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-dev@l.g.o
Subject: [gentoo-dev] [PATCH] cdrom.eclass: Append to PROPERTIES variable.
Date: Fri, 26 Jul 2019 22:25:36
Message-Id: w6gsgqswi0e.fsf@kph.uni-mainz.de
1 It is not accumulated across eclasses.
2
3 Signed-off-by: Ulrich Müller <ulm@g.o>
4 ---
5 eclass/cdrom.eclass | 6 +++---
6 1 file changed, 3 insertions(+), 3 deletions(-)
7
8 diff --git a/eclass/cdrom.eclass b/eclass/cdrom.eclass
9 index 7b0eb9c6c3b5..77b9d6ceb209 100644
10 --- a/eclass/cdrom.eclass
11 +++ b/eclass/cdrom.eclass
12 @@ -1,4 +1,4 @@
13 -# Copyright 1999-2017 Gentoo Foundation
14 +# Copyright 1999-2019 Gentoo Authors
15 # Distributed under the terms of the GNU General Public License v2
16
17 # @ECLASS: cdrom.eclass
18 @@ -28,9 +28,9 @@ inherit portability
19 # conditionally based on USE="cdinstall".
20 if [[ ${CDROM_OPTIONAL} == "yes" ]] ; then
21 IUSE="cdinstall"
22 - PROPERTIES="cdinstall? ( interactive )"
23 + PROPERTIES+=" cdinstall? ( interactive )"
24 else
25 - PROPERTIES="interactive"
26 + PROPERTIES+=" interactive"
27 fi
28
29 # @FUNCTION: cdrom_get_cds
30 --
31 2.22.0

Attachments

File name MIME type
signature.asc application/pgp-signature

Replies