Skip to content

Commit

Permalink
mail-client/neomutt: [QA] fix tc-get* quoting
Browse files Browse the repository at this point in the history
This can cause build problems for e.g. 32-bit (gcc -m32 ...)

Signed-off-by: Sam James <[email protected]>
  • Loading branch information
thesamesam committed Mar 26, 2022
1 parent 7421ae9 commit 25da315
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions mail-client/neomutt/neomutt-20210205-r1.ebuild
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7
Expand Down Expand Up @@ -116,7 +116,7 @@ src_configure() {
"$(usex test --testing --disable-testing)"
)

econf CCACHE=none CC_FOR_BUILD=$(tc-getCC) "${myconf[@]}"
econf CCACHE=none CC_FOR_BUILD="$(tc-getCC)" "${myconf[@]}"
}

src_test() {
Expand Down
4 changes: 2 additions & 2 deletions mail-client/neomutt/neomutt-20211015.ebuild
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7
Expand Down Expand Up @@ -112,7 +112,7 @@ src_configure() {
"$(usex test --testing --disable-testing)"
)

econf CCACHE=none CC_FOR_BUILD=$(tc-getCC) "${myconf[@]}"
econf CCACHE=none CC_FOR_BUILD="$(tc-getCC)" "${myconf[@]}"
}

src_test() {
Expand Down
4 changes: 2 additions & 2 deletions mail-client/neomutt/neomutt-20211022.ebuild
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7
Expand Down Expand Up @@ -112,7 +112,7 @@ src_configure() {
"$(usex test --testing --disable-testing)"
)

econf CCACHE=none CC_FOR_BUILD=$(tc-getCC) "${myconf[@]}"
econf CCACHE=none CC_FOR_BUILD="$(tc-getCC)" "${myconf[@]}"
}

src_test() {
Expand Down
4 changes: 2 additions & 2 deletions mail-client/neomutt/neomutt-20211029-r1.ebuild
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8
Expand Down Expand Up @@ -121,7 +121,7 @@ src_configure() {
"$(usex test --testing --disable-testing)"
)

econf CCACHE=none CC_FOR_BUILD=$(tc-getCC) "${myconf[@]}"
econf CCACHE=none CC_FOR_BUILD="$(tc-getCC)" "${myconf[@]}"
}

src_test() {
Expand Down
4 changes: 2 additions & 2 deletions mail-client/neomutt/neomutt-20211029.ebuild
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7
Expand Down Expand Up @@ -112,7 +112,7 @@ src_configure() {
"$(usex test --testing --disable-testing)"
)

econf CCACHE=none CC_FOR_BUILD=$(tc-getCC) "${myconf[@]}"
econf CCACHE=none CC_FOR_BUILD="$(tc-getCC)" "${myconf[@]}"
}

src_test() {
Expand Down
4 changes: 2 additions & 2 deletions mail-client/neomutt/neomutt-99999999.ebuild
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8
Expand Down Expand Up @@ -121,7 +121,7 @@ src_configure() {
"$(usex test --testing --disable-testing)"
)

econf CCACHE=none CC_FOR_BUILD=$(tc-getCC) "${myconf[@]}"
econf CCACHE=none CC_FOR_BUILD="$(tc-getCC)" "${myconf[@]}"
}

src_test() {
Expand Down

0 comments on commit 25da315

Please sign in to comment.