From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1377691-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 109FB15808B for <garchives@archives.gentoo.org>; Sun, 20 Mar 2022 00:38:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 920AB2BC004; Sun, 20 Mar 2022 00:38:41 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7634C2BC004 for <gentoo-commits@lists.gentoo.org>; Sun, 20 Mar 2022 00:38:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 22DC63431AE for <gentoo-commits@lists.gentoo.org>; Sun, 20 Mar 2022 00:38:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B7C64344 for <gentoo-commits@lists.gentoo.org>; Sun, 20 Mar 2022 00:38:37 +0000 (UTC) From: "Sam James" <sam@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org> Message-ID: <1647736699.d64c42bbe7d20367497d8c064cd8984edfb19013.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-scheme/owl-lisp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-scheme/owl-lisp/owl-lisp-0.2.ebuild dev-scheme/owl-lisp/owl-lisp-9999.ebuild X-VCS-Directories: dev-scheme/owl-lisp/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d64c42bbe7d20367497d8c064cd8984edfb19013 X-VCS-Branch: master Date: Sun, 20 Mar 2022 00:38:37 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9c19e5ef-5c57-45e2-a090-2d2ab925f77c X-Archives-Hash: 68a9628664a49fc8b9968f34db67fbf3 commit: d64c42bbe7d20367497d8c064cd8984edfb19013 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sun Mar 20 00:38:19 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Mar 20 00:38:19 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d64c42bb 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 <AT> gentoo.org> dev-scheme/owl-lisp/owl-lisp-0.2.ebuild | 4 ++-- 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() {