diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 00:38:19 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 00:38:19 +0000 |
commit | d64c42bbe7d20367497d8c064cd8984edfb19013 (patch) | |
tree | a3ff9787748ebd3973c59587ddff6d4061b21b77 | |
parent | dev-scheme/tinyscheme: [QA] fix tc-get* quoting (diff) | |
download | gentoo-d64c42bbe7d20367497d8c064cd8984edfb19013.tar.gz gentoo-d64c42bbe7d20367497d8c064cd8984edfb19013.tar.bz2 gentoo-d64c42bbe7d20367497d8c064cd8984edfb19013.zip |
dev-scheme/owl-lisp: [QA] fix tc-get* quoting
This can cause build problems for e.g. 32-bit (gcc -m32 ...)
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | dev-scheme/owl-lisp/owl-lisp-0.2.ebuild | 4 | ||||
-rw-r--r-- | dev-scheme/owl-lisp/owl-lisp-9999.ebuild | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/dev-scheme/owl-lisp/owl-lisp-0.2.ebuild b/dev-scheme/owl-lisp/owl-lisp-0.2.ebuild index 95d2e9242438..0ea693d0dc04 100644 --- a/dev-scheme/owl-lisp/owl-lisp-0.2.ebuild +++ b/dev-scheme/owl-lisp/owl-lisp-0.2.ebuild @@ -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 # NOTICE: Because it is "purely functional" it is not scheme-compatible ootb @@ -29,7 +29,7 @@ src_prepare() { } src_compile(){ - emake CC=$(tc-getCC) CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" owl + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" owl } src_install() { diff --git a/dev-scheme/owl-lisp/owl-lisp-9999.ebuild b/dev-scheme/owl-lisp/owl-lisp-9999.ebuild index c88a667b978e..cae7c2bb43c6 100644 --- a/dev-scheme/owl-lisp/owl-lisp-9999.ebuild +++ b/dev-scheme/owl-lisp/owl-lisp-9999.ebuild @@ -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 # NOTICE: Because it is "purely functional" it is not scheme-compatible ootb @@ -23,7 +23,7 @@ LICENSE="MIT" SLOT="0" src_compile(){ - emake CC=$(tc-getCC) CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" owl + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" owl } src_install() { |