]> code.ossystems Code Review - openembedded-core.git/commitdiff
tasks/task-poky: make the file manager a conditional part of the task
authorJoshua Lock <josh@linux.intel.com>
Fri, 15 Jan 2010 15:44:20 +0000 (15:44 +0000)
committerJoshua Lock <josh@linux.intel.com>
Fri, 15 Jan 2010 15:44:20 +0000 (15:44 +0000)
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>
meta/packages/tasks/task-poky.bb

index 36757eeee11664431176a957de677d80e52977b2..ca0373f384298ce2fb8db760858f77e9cced65ef 100644 (file)
@@ -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"