diff options
| author | Marc Jeanmougin <marc@jeanmougin.fr> | 2016-05-02 19:08:15 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marcjeanmougin@free.fr> | 2016-05-02 19:08:15 +0000 |
| commit | eb5847cd8a8460b123b33f07c9270a1b5e3b114c (patch) | |
| tree | 42a8fd6854e8c5f10d10fbb90d0231a858306722 /src/extension/loader.cpp | |
| parent | Translations. Italian translation update. (diff) | |
| parent | Fixed "make install" to set the right rpath. libinkscape_base.so should now b... (diff) | |
| download | inkscape-eb5847cd8a8460b123b33f07c9270a1b5e3b114c.tar.gz inkscape-eb5847cd8a8460b123b33f07c9270a1b5e3b114c.zip | |
Merge ~meberl/inkscape/extension-fixes + CMake build: install libs and links installed bin to installed libs.
(bzr r14866)
Diffstat (limited to 'src/extension/loader.cpp')
| -rw-r--r-- | src/extension/loader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extension/loader.cpp b/src/extension/loader.cpp index 110df3ae3..863a176ca 100644 --- a/src/extension/loader.cpp +++ b/src/extension/loader.cpp @@ -74,7 +74,7 @@ Implementation::Implementation *Loader::load_implementation(Inkscape::XML::Docum _getInkscapeVersion GetInkscapeVersion = NULL; // build the path where to look for the plugin - gchar *path = g_build_filename(_baseDirectory, name, (char *) NULL); + gchar *path = g_build_filename(_baseDirectory.c_str(), name, (char *) NULL); module = g_module_open(path, G_MODULE_BIND_LOCAL); g_free(path); |
