diff options
author | Joshua Lock <josh@linux.intel.com> | 2010-01-15 15:44:20 +0000 |
---|---|---|
committer | Joshua Lock <josh@linux.intel.com> | 2010-01-15 15:44:20 +0000 |
commit | fd165bb9c0c44993c65bee7714f8402c95a4902e (patch) | |
tree | ce4e5d20813a289a5f43024122063993c9bc7aca /meta/packages/tasks | |
parent | e77bc0b84876a40d8ffd349d34971d2113593933 (diff) | |
download | poky-fd165bb9c0c44993c65bee7714f8402c95a4902e.tar.gz |
tasks/task-poky: make the file manager a conditional part of the task
mips doesn't support pcmanfm so make it a conditional part of the task by
creating a variable, FILEMANAGER, set to pcmanfm by default and empty for mips
Signed-off-by: Joshua Lock <josh@linux.intel.com>
Diffstat (limited to 'meta/packages/tasks')
-rw-r--r-- | meta/packages/tasks/task-poky.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/packages/tasks/task-poky.bb b/meta/packages/tasks/task-poky.bb index 36757eeee1..ca0373f384 100644 --- a/meta/packages/tasks/task-poky.bb +++ b/meta/packages/tasks/task-poky.bb | |||
@@ -28,6 +28,10 @@ ALLOW_EMPTY = "1" | |||
28 | 28 | ||
29 | SPLASH ?= "psplash" | 29 | SPLASH ?= "psplash" |
30 | 30 | ||
31 | # pcmanfm doesn't work on mips | ||
32 | FILEMANAGER ?= "pcmanfm" | ||
33 | FILEMANAGER_mips ?= "" | ||
34 | |||
31 | RDEPENDS_task-poky-apps-console = "\ | 35 | RDEPENDS_task-poky-apps-console = "\ |
32 | avahi-daemon \ | 36 | avahi-daemon \ |
33 | dropbear \ | 37 | dropbear \ |
@@ -58,7 +62,7 @@ RDEPENDS_task-poky-x11-base = "\ | |||
58 | 62 | ||
59 | RDEPENDS_task-poky-apps-x11-core = "\ | 63 | RDEPENDS_task-poky-apps-x11-core = "\ |
60 | leafpad \ | 64 | leafpad \ |
61 | pcmanfm \ | 65 | ${FILEMANAGER} \ |
62 | matchbox-terminal \ | 66 | matchbox-terminal \ |
63 | screenshot" | 67 | screenshot" |
64 | 68 | ||