summaryrefslogtreecommitdiffstats
path: root/src/world.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-10-04 01:55:16 +0000
committerDavid Robillard <d@drobilla.net>2007-10-04 01:55:16 +0000
commitc3631e70c70086539dd271322c413096417a0c1c (patch)
treed7975fa808cc655481b056d652198c289e9e7dcf /src/world.c
parentc1b50ad1aabd55702c0b20392dc9ad40813ca976 (diff)
downloadlilv-c3631e70c70086539dd271322c413096417a0c1c.tar.gz
lilv-c3631e70c70086539dd271322c413096417a0c1c.tar.bz2
lilv-c3631e70c70086539dd271322c413096417a0c1c.zip
Stripped some old useless #if 0'd out code.
Switch back to looking in ~/.lv2 for user bundles 'cause larsl said so. git-svn-id: http://svn.drobilla.net/lad/slv2@822 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 4b832b7..e19d359 100644
--- a/src/world.c
+++ b/src/world.c
@@ -448,7 +448,7 @@ slv2_world_load_all(SLV2World world)
} else {
const char* const home = getenv("HOME");
if (home) {
- const char* const suffix = "/.lv2/bundles:/usr/local/lib/lv2:/usr/lib/lv2";
+ const char* const suffix = "/.lv2:/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");