aboutsummaryrefslogtreecommitdiff
path: root/ponymap.c
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2023-06-29 02:24:59 +0200
committerPřemysl Eric Janouch <p@janouch.name>2023-06-29 02:25:23 +0200
commitc420e3ce861bff2433c7f3e6da3bb9df18c8e095 (patch)
treed76b4be3db76f7305080ffa0b9ba82c9020dff7b /ponymap.c
parent11567dc05cba0c8c5cd36523063066666a212caf (diff)
downloadponymap-c420e3ce861bff2433c7f3e6da3bb9df18c8e095.tar.gz
ponymap-c420e3ce861bff2433c7f3e6da3bb9df18c8e095.tar.xz
ponymap-c420e3ce861bff2433c7f3e6da3bb9df18c8e095.zip
Fix plugin search path on Nix
Even its non-full GNUInstallDirs paths are absolute, which is apparently allowed.
Diffstat (limited to 'ponymap.c')
-rw-r--r--ponymap.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ponymap.c b/ponymap.c
index 1c93f88..41255d4 100644
--- a/ponymap.c
+++ b/ponymap.c
@@ -840,6 +840,7 @@ load_one_plugin (struct app_context *ctx, const char *name, const char *path)
void *table = dlopen (path, RTLD_LAZY | RTLD_LOCAL);
if (!table)
{
+ print_debug ("%s", path);
print_error ("could not load `%s': %s", name, dlerror ());
return false;
}
@@ -874,6 +875,7 @@ load_plugins (struct app_context *ctx)
DIR *dir = opendir (plugin_dir);
if (!dir)
{
+ print_debug ("%s", plugin_dir);
print_fatal ("%s: %s",
"cannot open plugin directory", strerror (errno));
return false;