summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBeman Dawes <bdawes@acm.org>2001-01-06 14:35:29 +0000
committerBeman Dawes <bdawes@acm.org>2001-01-06 14:35:29 +0000
commit3e6a9c38bc5c57e0ecf38188e2d24fbad77cab54 (patch)
treeeec166b30770d1941922a5815387762c1670cc32
parent20c3602f56513a5a493e0b6ceaec9153eccf48bf (diff)
downloadboost-3e6a9c38bc5c57e0ecf38188e2d24fbad77cab54.tar.gz
Make path of table entry relative to parent directory. Fixes bug introduced when source path changed to be relative to path argument.
[SVN r8513]
-rw-r--r--libs/regression.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/regression.cpp b/libs/regression.cpp
index bf6f17f402..49c04b380f 100644
--- a/libs/regression.cpp
+++ b/libs/regression.cpp
@@ -197,7 +197,7 @@ void do_tests(std::ostream & out,
std::cout << "*** " << file << " ***\n\n";
out << "<tr>\n"
- << "<td><a href=\"" << file << "\">" << file << "</a></td>\n"
+ << "<td><a href=\"../" << file << "\">" << file << "</a></td>\n"
<< "<td>" << type << "</td>\n";
for(ForwardIterator it = firstcompiler; it != lastcompiler; ++it) {