Skip to content
Snippets Groups Projects
Commit 18b15542 authored by Ian Lynagh's avatar Ian Lynagh
Browse files

Fix a bug in gen_contents_index

The library doc index thought that the docs were in $module.html, rather
than $package/$module.html.
parent d755f7e6
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ esac
for HADDOCK_FILE in $HADDOCK_FILES
do
NAME=`echo "$DIR" | sed 's#/.*##'`
NAME=`echo "$HADDOCK_FILE" | sed 's#/.*##'`
HADDOCK_ARGS="$HADDOCK_ARGS --read-interface=$NAME,$HADDOCK_FILE"
NAMES="$NAMES $NAME"
done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment