From 0d7627ee0a194536b281d69de8c0380539c77522 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 3 Oct 2007 22:23:54 +0000 Subject: Look for user-installed plugins in ~/.lv2/bundles git-svn-id: http://svn.drobilla.net/lad/slv2@815 a436a847-0d15-0410-975c-d299462d15a1 --- src/world.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world.c b/src/world.c index fe7bbbf..c3d500c 100644 --- a/src/world.c +++ b/src/world.c @@ -458,7 +458,7 @@ slv2_world_load_all(SLV2World world) } else { const char* const home = getenv("HOME"); if (home) { - const char* const suffix = "/.lv2:/usr/local/lib/lv2:/usr/lib/lv2"; + const char* const suffix = "/.lv2/bundles:/usr/local/lib/lv2:/usr/lib/lv2"; lv2_path = slv2_strjoin(home, suffix, NULL); } else { lv2_path = strdup("/usr/local/lib/lv2:/usr/lib/lv2"); -- cgit v1.2.1