STAMP = "${TMPDIR}/stamps/${MULTIMACH_ARCH}-${TARGET_OS}/${PF}" WORKDIR = "${TMPDIR}/work/${MULTIMACH_ARCH}-${TARGET_OS}/${PF}" STAGING_KERNEL_DIR = "${STAGING_DIR}/${MULTIMACH_ARCH}-${TARGET_OS}/kernel" # Find any machine specific sub packages and if present, mark the # whole package as machine specific for multimachine purposes. python __anonymous () { packages = bb.data.getVar('PACKAGES', d, 1).split() macharch = bb.data.getVar('MACHINE_ARCH', d, 1) multiarch = bb.data.getVar('PACKAGE_ARCH', d, 1) for pkg in packages: pkgarch = bb.data.getVar("PACKAGE_ARCH_%s" % pkg, d, 1) # We could look for != PACKAGE_ARCH here but how to choose # if multiple differences are present? # Look through PACKAGE_ARCHS for the priority order? if pkgarch and pkgarch == macharch: multiarch = macharch bb.data.setVar('MULTIMACH_ARCH', multiarch, d) } 'UA-58643691-1', 'auto'); ga('send', 'pageview');
summaryrefslogtreecommitdiff
path: root/meta/recipes-core/ncurses/ncurses_5.4.bb
blob: 60e07fd859acd39ec2d07b9a29bdf938cdadec72 (plain)
1
2
3
4
5
6
7
8
9
10
11