From 1eccbe4355685b322194df72b5de2382d5290b3b Mon Sep 17 00:00:00 2001
From: David Robillard <d@drobilla.net>
Date: Thu, 7 Jul 2022 18:59:32 -0400
Subject: Rearrange source tree to be directly usable by dependants

This allows the LV2 source distribution to be used as an include path for
compilers and an LV2_PATH for applications, at the expense of self-contained
bundles.  That's a nice idea, but it made LV2 itself weird and annoying to
depend on.  This rearranges things so that directories in the source tree
correspond more closely to installation directories.

To make this possible, the "aux" directory in the documentation output has been
changed to "style", to avoid the reserved name "aux" on Windows.
---
 scripts/lv2_build_index.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'scripts')

diff --git a/scripts/lv2_build_index.py b/scripts/lv2_build_index.py
index 444e078..bc91911 100755
--- a/scripts/lv2_build_index.py
+++ b/scripts/lv2_build_index.py
@@ -102,7 +102,7 @@ def _spec_link_columns(spec, root, name, online):
 
     # API
     col += '<td><a rel="rdfs:seeAlso"'
-    col += f' href="../doc/html/group__{stem}.html">{name}'
+    col += f' href="../html/group__{stem}.html">{name}'
     col += "</a></td>"
 
     return col
-- 
cgit v1.2.1