From 13f8bcea5df5586d07b167110daabdae8453931d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 24 Mar 2019 19:21:29 +0100 Subject: Avoid redundant copy of Doxygen stylesheet --- lv2specgen/lv2specgen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lv2specgen') diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py index ba364fb..1363303 100755 --- a/lv2specgen/lv2specgen.py +++ b/lv2specgen/lv2specgen.py @@ -1494,9 +1494,9 @@ if __name__ == "__main__": # Root link root_path = opts['root_path'] root_uri = opts['root_uri'] - root_link = os.path.relpath(root_path, path) if root_path else '.' + root_link = root_path if not options.online_docs: - root_link = os.path.join(root_link, 'index.html') + root_link = os.path.join(root_path, 'index.html') # Generate spec documentation specdoc = specgen( -- cgit v1.2.1