diff options
author | Holger Hans Peter Freyther <zecke@openmoko.org> | 2008-10-08 04:01:45 +0200 |
---|---|---|
committer | Holger Hans Peter Freyther <zecke@selfish.org> | 2008-11-15 23:49:07 +0100 |
commit | 6274bd5e651a1b4d94fde97f54a2df6ca6cc0614 (patch) | |
tree | 412ec5b9971a3f8093689e7c801737364db18533 | |
parent | bb9a68a493ff6b9afc1bfc3e57b39fd77df14816 (diff) |
tasks: Set PACKAGE_ARCH after inherit task
Continue with d2ff2d4cd486e939c72b113fbfc808a743bd436e. Setting PACKAGE_ARCH
before inherit task will set PACKAGE_ARCH to "all". In this case the package
arch should be the machine as it contains a machine specific xserver.
ALLOW_EMPTY is already set by thate bb class as well...
-rw-r--r-- | packages/tasks/task-openmoko-basic.bb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/packages/tasks/task-openmoko-basic.bb b/packages/tasks/task-openmoko-basic.bb index c195d5254a..4f21f43ee3 100644 --- a/packages/tasks/task-openmoko-basic.bb +++ b/packages/tasks/task-openmoko-basic.bb @@ -1,12 +1,11 @@ DESCRIPTION = "Openmoko: Tasks for the Openmoko Linux Distribution" SECTION = "openmoko/base" -ALLOW_EMPTY = "1" -PACKAGE_ARCH = "${MACHINE_ARCH}" LICENSE = "MIT" -PR = "r0.04" +PR = "r0.05" inherit task +PACKAGE_ARCH = "${MACHINE_ARCH}" PACKAGES = "task-openmoko-basic" DESCRIPTION_task-openmoko-qtopia-x11 = "Openmoko: Provide Window Manager, Om-settings and Om-installer" |