From 18b15542d69770ca761e0663fde6c6fa52fdb129 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Wed, 12 Dec 2007 12:11:54 +0000 Subject: [PATCH] Fix a bug in gen_contents_index The library doc index thought that the docs were in $module.html, rather than $package/$module.html. --- libraries/gen_contents_index | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/gen_contents_index b/libraries/gen_contents_index index 5cee6e3..4ddb58a 100644 --- a/libraries/gen_contents_index +++ b/libraries/gen_contents_index @@ -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 -- 1.7.10.4