diff options
author | David Robillard <d@drobilla.net> | 2007-10-03 22:23:54 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-10-03 22:23:54 +0000 |
commit | 0d7627ee0a194536b281d69de8c0380539c77522 (patch) | |
tree | 6321974e02c4fc303a99c48ce5f508c20d5bf7e9 | |
parent | 47c8ed163b98b307fa4f7412e59760ccff8e630f (diff) | |
download | lilv-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
-rw-r--r-- | src/world.c | 2 |
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"); |