diff options
author | François-Xavier Carton <fx.carton91@gmail.com> | 2022-03-15 18:57:16 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-16 17:06:44 +0000 |
commit | 49b11d2a3885caf8f9b7669181aefcddafb46bdf (patch) | |
tree | 50ef21fb70295489bb584403af371a8e9624282e /app-arch/p7zip | |
parent | dev-libs/openssl: Added verify-sig integration. (diff) | |
download | gentoo-49b11d2a3885caf8f9b7669181aefcddafb46bdf.tar.gz gentoo-49b11d2a3885caf8f9b7669181aefcddafb46bdf.tar.bz2 gentoo-49b11d2a3885caf8f9b7669181aefcddafb46bdf.zip |
app-arch/p7zip: quote variables to allow CC containing spaces
Signed-off-by: François-Xavier Carton <fx.carton91@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-arch/p7zip')
-rw-r--r-- | app-arch/p7zip/p7zip-16.02-r8.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app-arch/p7zip/p7zip-16.02-r8.ebuild b/app-arch/p7zip/p7zip-16.02-r8.ebuild index 2846c75537c9..d0bf79b50d69 100644 --- a/app-arch/p7zip/p7zip-16.02-r8.ebuild +++ b/app-arch/p7zip/p7zip-16.02-r8.ebuild @@ -88,14 +88,14 @@ src_prepare() { if use kde || use wxwidgets; then setup-wxwidgets unicode einfo "Preparing dependency list" - emake CC=$(tc-getCC) CXX=$(tc-getCXX) depend + emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" depend fi } src_compile() { - emake CC=$(tc-getCC) CXX=$(tc-getCXX) all3 + emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" all3 if use kde || use wxwidgets; then - emake CC=$(tc-getCC) CXX=$(tc-getCXX) -- 7zG + emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" -- 7zG fi } |