summaryrefslogtreecommitdiffstats
path: root/src/world.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-10-03 22:23:54 +0000
committerDavid Robillard <d@drobilla.net>2007-10-03 22:23:54 +0000
commit0d7627ee0a194536b281d69de8c0380539c77522 (patch)
tree6321974e02c4fc303a99c48ce5f508c20d5bf7e9 /src/world.c
parent47c8ed163b98b307fa4f7412e59760ccff8e630f (diff)
downloadlilv-0d7627ee0a194536b281d69de8c0380539c77522.tar.gz
lilv-0d7627ee0a194536b281d69de8c0380539c77522.tar.bz2
lilv-0d7627ee0a194536b281d69de8c0380539c77522.zip
Look for user-installed plugins in ~/.lv2/bundles
git-svn-id: http://svn.drobilla.net/lad/slv2@815 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/world.c')
-rw-r--r--src/world.c2
1 files changed, 1 insertions, 1 deletions
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");