Index: /trunk/psModules/src/camera/pmFPAfileDefine.c
===================================================================
--- /trunk/psModules/src/camera/pmFPAfileDefine.c	(revision 9902)
+++ /trunk/psModules/src/camera/pmFPAfileDefine.c	(revision 9903)
@@ -536,6 +536,7 @@
     PS_ASSERT_INT_POSITIVE(strlen(filename), false);
 
-    if (*found)
-        return NULL;
+    if (*found) {
+        return NULL;
+    }
 
     // a camera config is needed (as source of file rule)
@@ -581,8 +582,14 @@
     }
 
+    // Prepend the global path to the file rule
+    if (config->workdir) {
+        psStringPrepend(&file->filerule, "%s/", config->workdir);
+    }
+
     if (found) {
         *found = true;
     }
-    psFree (fpa);
+    psFree (fpa);                       // Drop reference
+
     return file;
 }
