From patchwork Mon Dec 9 17:10:26 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ryan Barnett X-Patchwork-Id: 1206432 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=busybox.net (client-ip=140.211.166.133; helo=hemlock.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=rockwellcollins.com Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 47WqTL2QgBz9sP6 for ; Tue, 10 Dec 2019 04:10:45 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 65575882DB; Mon, 9 Dec 2019 17:10:42 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id UbpIK0IZYfSY; Mon, 9 Dec 2019 17:10:41 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id AC5FF882A9; Mon, 9 Dec 2019 17:10:41 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 5B0BB1BF389 for ; Mon, 9 Dec 2019 17:10:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 4994A203F4 for ; Mon, 9 Dec 2019 17:10:40 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id XQNG9lFXbVOD for ; Mon, 9 Dec 2019 17:10:39 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from secvs04.rockwellcollins.com (smtpimr.rockwellcollins.com [205.175.225.130]) by silver.osuosl.org (Postfix) with ESMTPS id 5B3F62033B for ; Mon, 9 Dec 2019 17:10:39 +0000 (UTC) IronPort-SDR: PL/AUm19wiIUO0kkix5UiOtUgfwP15SDygwn+T6U3366LCYk8tEY0NGtM+hYyzQDQNChElMt+j 5ETpurbzEkS7v15hydzxjjdgwHGrXlfXmOGGvQejQwX7qTUNv+95kIoQ5r01KAnCAaC9KNRcKN XHpJdLo+iwHltQW5U/xQMh0FOoF+Q272vpI1bSPflcJLv2wHuZE7FObEOfVCSVOM/mSQbrEIFm uSGoMr+XnbLHYsEHMhzu/v9ITOO68BhqZB4JKMt1Su2bpnlBfkvEX0S6u/K/2G1LozosAQpa1G jo0= Received: from ofwgwc03.rockwellcollins.com (HELO dtulimr01.rockwellcollins.com) ([205.175.225.12]) by secvs04.rockwellcollins.com with ESMTP; 09 Dec 2019 11:10:37 -0600 X-Received: from eggs.rockwellcollins.lab (eggs.rockwellcollins.lab [10.148.117.24]) by dtulimr01.rockwellcollins.com (Postfix) with ESMTP id 7EE3F60464; Mon, 9 Dec 2019 11:10:37 -0600 (CST) From: Ryan Barnett To: buildroot@buildroot.org Date: Mon, 9 Dec 2019 11:10:26 -0600 Message-Id: <20191209171027.22631-1-ryan.barnett@rockwellcollins.com> X-Mailer: git-send-email 2.17.1 Subject: [Buildroot] [PATCH 1/1] package/lirc-tools: use single quote with SETUPTOOLS_ENV X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Ryan Barnett , Rhys Williams MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" With the change to pkg-python to use TARGET_CONFIGURE_OPTS in PKG_PYTHON_SETUPTOOLS_ENV in commit 1745fcde74, the LIRC_TOOLS_MAKE_ENV is incorrect as it sets the SETUPTOOLS_ENV using double quotes. This causes issues because the PKG_PYTHON_SETUPTOOLS_ENV contain double quotes as well. This causes a build error such as: /bin/sh: -I/home/naourr/work/instance-0/output-1/host/include CXXFLAGS_FOR_BUILD=-O2: No such file or directory Fix this by using single quotes with PKG_PYTHON_SETUPTOOLS_ENV instead of double quotes. Fixes: http://autobuild.buildroot.net/results/f7a9c02add9bde563c7289f7c0be2cb7aefd96b8 Signed-off-by: Ryan Barnett --- package/lirc-tools/lirc-tools.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/lirc-tools/lirc-tools.mk b/package/lirc-tools/lirc-tools.mk index e468f2a25d..d66f4e9925 100644 --- a/package/lirc-tools/lirc-tools.mk +++ b/package/lirc-tools/lirc-tools.mk @@ -47,7 +47,7 @@ endif ifeq ($(BR2_PACKAGE_PYTHON3),y) LIRC_TOOLS_DEPENDENCIES += python3 host-python3-setuptools -LIRC_TOOLS_MAKE_ENV += SETUPTOOLS_ENV="$(PKG_PYTHON_SETUPTOOLS_ENV)" +LIRC_TOOLS_MAKE_ENV += SETUPTOOLS_ENV='$(PKG_PYTHON_SETUPTOOLS_ENV)' endif define LIRC_TOOLS_INSTALL_INIT_SYSV