From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dan.rpsys.net (5751f4a1.skybroadband.com [87.81.244.161]) by mail.openembedded.org (Postfix) with ESMTP id F349077433 for ; Fri, 27 Jan 2017 17:42:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by dan.rpsys.net (8.14.4/8.14.4/Debian-4.1ubuntu1) with ESMTP id v0RHfVNV019725; Fri, 27 Jan 2017 17:42:14 GMT Received: from dan.rpsys.net ([127.0.0.1]) by localhost (dan.rpsys.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id BPDJAvbzG-bx; Fri, 27 Jan 2017 17:42:14 +0000 (GMT) Received: from hex ([192.168.3.34]) (authenticated bits=0) by dan.rpsys.net (8.14.4/8.14.4/Debian-4.1ubuntu1) with ESMTP id v0RHg91W019760 (version=TLSv1/SSLv3 cipher=AES128-GCM-SHA256 bits=128 verify=NOT); Fri, 27 Jan 2017 17:42:10 GMT Received: from richard by hex with local (Exim 4.86_2) (envelope-from ) id 1cXAXJ-0001WK-Lg; Fri, 27 Jan 2017 17:42:09 +0000 From: Richard Purdie To: openembedded-core@lists.openembedded.org Date: Fri, 27 Jan 2017 17:42:02 +0000 Message-Id: <1485538927-5797-2-git-send-email-richard.purdie@linuxfoundation.org> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1485538927-5797-1-git-send-email-richard.purdie@linuxfoundation.org> References: <1485538927-5797-1-git-send-email-richard.purdie@linuxfoundation.org> Subject: [PATCH 2/7] allarch: Drop STAGING_DIR_HOST expansion X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Jan 2017 17:42:17 -0000 Now that STAGINGDIR_HOST doesn't contain MACHINE, we no longer need to expand the value. Pre-expansion can mean components like PV can be expanded too early and cause problems for certain use cases. Signed-off-by: Richard Purdie --- meta/classes/allarch.bbclass | 4 ---- 1 file changed, 4 deletions(-) diff --git a/meta/classes/allarch.bbclass b/meta/classes/allarch.bbclass index a774841..a7ce024 100644 --- a/meta/classes/allarch.bbclass +++ b/meta/classes/allarch.bbclass @@ -2,10 +2,6 @@ # This class is used for architecture independent recipes/data files (usually scripts) # -# Expand STAGING_DIR_HOST since for cross-canadian/native/nativesdk, this will -# point elsewhere after these changes. -STAGING_DIR_HOST := "${STAGING_DIR_HOST}" - PACKAGE_ARCH = "all" python () { -- 2.7.4