summaryrefslogtreecommitdiffstats
path: root/conf/machine/include
diff options
context:
space:
mode:
authorDarren Hart <dvhart@linux.intel.com>2014-02-21 00:47:25 -0800
committerDarren Hart <dvhart@linux.intel.com>2014-02-21 00:53:52 -0800
commitd7026654ae4d18e7d7c193f64e4a4ce22453cfa5 (patch)
tree871875c726c5f923f76984e281f0a93c35435fea /conf/machine/include
parenta2e40547fd6e2e7874e1587956c4490904ce552a (diff)
downloadmeta-intel-d7026654ae4d18e7d7c193f64e4a4ce22453cfa5.tar.gz
intel-common-pkgarch: Correct PACKAGE_EXTRA_ARCHS usage
The trailing S was missing from the variable name, resulting in the kernel-modules package not being found as the common arch was not added to the PACKAGE_ARCHS variable used by the package manager. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Diffstat (limited to 'conf/machine/include')
-rw-r--r--conf/machine/include/intel-common-pkgarch.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/machine/include/intel-common-pkgarch.inc b/conf/machine/include/intel-common-pkgarch.inc
index e8ade195..e64cce24 100644
--- a/conf/machine/include/intel-common-pkgarch.inc
+++ b/conf/machine/include/intel-common-pkgarch.inc
@@ -1,5 +1,5 @@
1INTEL_COMMON_PACKAGE_ARCH ?= "${TUNE_PKGARCH}-intel-common" 1INTEL_COMMON_PACKAGE_ARCH ?= "${TUNE_PKGARCH}-intel-common"
2PACKAGE_ARCH_pn-linux-yocto = "${INTEL_COMMON_PACKAGE_ARCH}" 2PACKAGE_ARCH_pn-linux-yocto = "${INTEL_COMMON_PACKAGE_ARCH}"
3PACKAGE_ARCH_pn-linux-yocto-dev = "${INTEL_COMMON_PACKAGE_ARCH}" 3PACKAGE_ARCH_pn-linux-yocto-dev = "${INTEL_COMMON_PACKAGE_ARCH}"
4PACKAGE_EXTRA_ARCH_append = "${INTEL_COMMON_PACKAGE_ARCH}" 4PACKAGE_EXTRA_ARCHS_append += "${INTEL_COMMON_PACKAGE_ARCH}"
5MACHINEOVERRIDES =. "${INTEL_COMMON_PACKAGE_ARCH}:" 5MACHINEOVERRIDES =. "${INTEL_COMMON_PACKAGE_ARCH}:"