olena-2.0-48-gee9f7de demo/viewer/runner.cc: Fix libexec path.

--- scribo/ChangeLog | 4 ++++ scribo/demo/viewer/runner.cc | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/scribo/ChangeLog b/scribo/ChangeLog index d01f048..a6d9e17 100644 --- a/scribo/ChangeLog +++ b/scribo/ChangeLog @@ -1,3 +1,7 @@ +2012-05-23 Guillaume Lazzara <z@lrde.epita.fr> + + * demo/viewer/runner.cc: Fix libexec path. + 2012-05-22 Guillaume Lazzara <z@lrde.epita.fr> * demo/viewer/runner.cc: Make xml2doc binary lookup more robust. diff --git a/scribo/demo/viewer/runner.cc b/scribo/demo/viewer/runner.cc index fe6732f..ae79c8a 100644 --- a/scribo/demo/viewer/runner.cc +++ b/scribo/demo/viewer/runner.cc @@ -43,9 +43,9 @@ QString get_pathto(const QString& file, return SCRIBO_LOCAL_DEMODIR "/" + localdirsuffix; // Installed in a specific path ? - f.setFileName(SCRIBO_PREFIX_LIBEXECDIR "/" + file); + f.setFileName(SCRIBO_PREFIX_LIBEXECDIR "/scribo/" + file); if (f.exists()) - return SCRIBO_PREFIX_LIBEXECDIR; + return SCRIBO_PREFIX_LIBEXECDIR "/scribo/"; // Installed in a specific path but moved elsewhere ? QDir dir(QCoreApplication::applicationDirPath()); -- 1.7.2.5
participants (1)
-
Guillaume Lazzara