diff options
author | Ulrich Müller <ulm@gentoo.org> | 2019-07-27 00:19:43 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2019-07-27 16:11:57 +0200 |
commit | 1c29309b68e67c5b2251dc2a175c639afa947a7f (patch) | |
tree | 8becc0acba62fbf830e14e3bfe88005a56b26a4c /eclass/cdrom.eclass | |
parent | eclass: Add "live" to PROPERTIES in all live eclasses. (diff) | |
download | gentoo-1c29309b68e67c5b2251dc2a175c639afa947a7f.tar.gz gentoo-1c29309b68e67c5b2251dc2a175c639afa947a7f.tar.bz2 gentoo-1c29309b68e67c5b2251dc2a175c639afa947a7f.zip |
cdrom.eclass: Append to PROPERTIES variable.
It is not accumulated across eclasses.
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass/cdrom.eclass')
-rw-r--r-- | eclass/cdrom.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/cdrom.eclass b/eclass/cdrom.eclass index 7b0eb9c6c3b5..77b9d6ceb209 100644 --- a/eclass/cdrom.eclass +++ b/eclass/cdrom.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: cdrom.eclass @@ -28,9 +28,9 @@ inherit portability # conditionally based on USE="cdinstall". if [[ ${CDROM_OPTIONAL} == "yes" ]] ; then IUSE="cdinstall" - PROPERTIES="cdinstall? ( interactive )" + PROPERTIES+=" cdinstall? ( interactive )" else - PROPERTIES="interactive" + PROPERTIES+=" interactive" fi # @FUNCTION: cdrom_get_cds |