From: Joshua Lock Date: Fri, 15 Jan 2010 15:44:20 +0000 (+0000) Subject: tasks/task-poky: make the file manager a conditional part of the task X-Git-Tag: 2011-1~6416 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=fd165bb9c0c44993c65bee7714f8402c95a4902e;p=openembedded-core.git 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 --- 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" SPLASH ?= "psplash" +# pcmanfm doesn't work on mips +FILEMANAGER ?= "pcmanfm" +FILEMANAGER_mips ?= "" + RDEPENDS_task-poky-apps-console = "\ avahi-daemon \ dropbear \ @@ -58,7 +62,7 @@ RDEPENDS_task-poky-x11-base = "\ RDEPENDS_task-poky-apps-x11-core = "\ leafpad \ - pcmanfm \ + ${FILEMANAGER} \ matchbox-terminal \ screenshot"