You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by se...@apache.org on 2008/03/24 18:54:13 UTC

svn commit: r640483 - /stdcxx/trunk/bin/xcomp.awk

Author: sebor
Date: Mon Mar 24 10:54:05 2008
New Revision: 640483

URL: http://svn.apache.org/viewvc?rev=640483&view=rev
Log:
2008-03-24  Martin Sebor  <se...@roguewave.com>

	* bin/xcomp.awk (print_section): Prepended "../" to the log file name
	since build logs are stored in the parent directory of the one that
	contains the cross-build results.

Modified:
    stdcxx/trunk/bin/xcomp.awk

Modified: stdcxx/trunk/bin/xcomp.awk
URL: http://svn.apache.org/viewvc/stdcxx/trunk/bin/xcomp.awk?rev=640483&r1=640482&r2=640483&view=diff
==============================================================================
--- stdcxx/trunk/bin/xcomp.awk (original)
+++ stdcxx/trunk/bin/xcomp.awk Mon Mar 24 10:54:05 2008
@@ -1240,8 +1240,10 @@
 
         # insert the .gz suffix before the final .txt suffix
         # to form the name of the original gzipped log file
+        # prepend "../" to the file name since the logs are
+        # in the parent directory
         loggzfname = substr(loggzfname, 1, index(loggzfname, ".txt") - 1)
-        loggzfname = loggzfname ".gz.txt"
+        loggzfname = "../" loggzfname ".gz.txt"
 
         colnos = colnos "          <td title=\"" loggzfname "\">"
         colnos = colnos "<a href=\"" loggzfname "\">" i "</a></td>"