Since update of TeXLive, both on macOS and Ubuntu (from 12.04 to 13.04), index is not referenced correctly in the table of content. Instead, the hyperlink to Index point to the bibliography.
A lot of question are related to the hyperlink problem with index, but since mine seems a bit different, I post a new question. I emphasize the fact that this worked correctly with previous version of TeXlive (prior to 2010) which suggest that some modification in between are causing this problem.
Here is a minimal example :
\documentclass[a4paper]{report}
\usepackage{makeidx}
\usepackage{tocbibind}
\usepackage{hyperref}
\makeindex
\begin{document}
\tableofcontents
test\index{test}
\begin{thebibliography}{1}
\bibitem{test} Test, 2013.
\end{thebibliography}
\printindex
\end{document}
reportis replaced byarticle!?! – daleif Oct 15 '13 at 08:40