When checking for various client specific libraries, job code tries to reference client/lib directory, which does not exist. Fix the code to point at client/common_lib. This patch fixes autoserv and autotest regressions as of latest svn revision (3938). Signed-off-by: Lucas Meneghel Rodrigues <lmr@xxxxxxxxxx> --- client/common_lib/base_job.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/client/common_lib/base_job.py b/client/common_lib/base_job.py index 4ac65bc..50c925e 100644 --- a/client/common_lib/base_job.py +++ b/client/common_lib/base_job.py @@ -266,7 +266,7 @@ class base_job(object): # various client-specific directories self._bindir = readonly_dir(self.clientdir, 'bin') - self._libdir = readonly_dir(self.clientdir, 'lib') + self._libdir = readonly_dir(self.clientdir, 'common_lib') self._configdir = readonly_dir(self.clientdir, 'config') self._profdir = readonly_dir(self.clientdir, 'profilers') self._pkgdir = readwrite_dir(self.clientdir, 'packages') -- 1.6.2.5 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html