From: Peter O. <obe...@us...> - 2013-02-01 11:44:05
|
Update of /cvsroot/ltp/utils/analysis/lcov/bin In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv13225 Modified Files: genhtml Log Message: genhtml: fix handling of user-specified prefixes with trailing / A trailing / in a user-specified prefix is not correctly recognized. Fix this by removing any number of trailing / in a user-specified prefix. Reported by ahm...@me.... Index: genhtml =================================================================== RCS file: /cvsroot/ltp/utils/analysis/lcov/bin/genhtml,v retrieving revision 1.74 retrieving revision 1.75 diff -C2 -d -r1.74 -r1.75 *** genhtml 25 Jan 2013 16:30:25 -0000 1.74 --- genhtml 1 Feb 2013 11:44:03 -0000 1.75 *************** *** 925,928 **** --- 925,929 ---- info("Using user-specified filename prefix \"". "$dir_prefix\"\n"); + $dir_prefix =~ s/\/+$//; } |