# Task packages are only used to pull in other packages # via their dependencies. They are empty. ALLOW_EMPTY = "1" # By default, only the task package itself is in PACKAGES. # -dbg and -dev flavours are handled by the anonfunc below. # This means that task recipes used to build multiple task # packages have to modify PACKAGES after inheriting task.bbclass. PACKAGES = "${PN}" # By default, task packages do not depend on a certain architecture. # Only if dependencies are modified by MACHINE_FEATURES, packages # need to be set to MACHINE_ARCH after inheriting task.bbclass PACKAGE_ARCH = "all" # This automatically adds -dbg and -dev flavours of all PACKAGES # to the list. Their dependencies (RRECOMMENDS) are handled as usual # by package_depchains in a following step. python () { packages = bb.data.getVar('PACKAGES', d, 1).split() genpackages = [] for pkg in packages: for postfix in ['-dbg', '-dev']: genpackages.append(pkg+postfix) bb.data.setVar('PACKAGES', ' '.join(packages+genpackages), d) } ption value='dylan'>dylan Mirror of openembedded-coreMulti-Tech Systems
summaryrefslogtreecommitdiff
path: root/meta/recipes-core/expat
AgeCommit message (Expand)AuthorFiles
2014-02-20recipes: convert remaining SUMMARY/DESCRIPTION cosmetic issues (part 2)Matthieu Crapet1
2013-10-30recipes: Remove PR = r0 from all recipesRichard Purdie1
2012-05-16expat: update to upstream version 2.1.0Marko Lindqvist3
2012-03-21gzip/pigz-native: Install into a prefix to avoid clashing with system binariesRichard Purdie1
2011-10-25libxml-parser-perl, libxml-simple-perl, expat, sgmlspl-native, git: bump PR t...Martin Jansa1
2011-05-17recipes: Add Upstream-Status to various recipe patchesScott Garman1
2010-12-09SRC_URI Checksums AdditionalsSaul Wold1
2010-11-23expat:Add license checksum to bb fileMei Lei1
2010-10-11recipes-core: Cleanup package descriptions and summariesMark Hatle