diff options
author | 2018-11-28 23:04:51 +0000 | |
---|---|---|
committer | 2018-11-28 23:04:51 +0000 | |
commit | e79e532d2563c4eae769876fd7cc7e6f3fac12da (patch) | |
tree | e4e320ec2c790c50a810932d9325dc2ab7f45039 /profiles/arch/ia64 | |
parent | dev-vcs/git: stable 2.19.2 for ppc64, bug #671988 (diff) | |
download | gentoo-e79e532d2563c4eae769876fd7cc7e6f3fac12da.tar.gz gentoo-e79e532d2563c4eae769876fd7cc7e6f3fac12da.tar.bz2 gentoo-e79e532d2563c4eae769876fd7cc7e6f3fac12da.zip |
profiles/arch/*/make.defaults: tweak RUBY_TARGETS override
Unfortunately RUBY_TARGETS does not have merge semantics
and just overrides value from parent profile. Thus
RUBY_TARGETS="ruby23 -ruby24"
is not valid and yields error spam like:
Invalid '-' operator in non-incremental variable 'RUBY_TARGETS': '-ruby24'
Just drop RUBY_TARGETS="-ruby" part. The change should be a no-op.
Bug: https://bugs.gentoo.org/671064
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'profiles/arch/ia64')
-rw-r--r-- | profiles/arch/ia64/make.defaults | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/profiles/arch/ia64/make.defaults b/profiles/arch/ia64/make.defaults index 1c7884a9e388..b91a39618590 100644 --- a/profiles/arch/ia64/make.defaults +++ b/profiles/arch/ia64/make.defaults @@ -34,4 +34,4 @@ ALSA_CARDS="ali5451 als4000 atiixp atiixp-modem bt87x ca0106 cmipci emu10k1x ens # Hans de Graaff <graaff@gentoo.org> (12 Nov 2018) # Temporary entry to support stable bug 661262 -RUBY_TARGETS="ruby23 -ruby24" +RUBY_TARGETS="ruby23" |