summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Oschwald <oschwaldp@ociweb.com>2016-08-09 16:48:47 -0500
committerPeter Oschwald <oschwaldp@ociweb.com>2016-08-09 16:48:47 -0500
commit1b4dabcbd23e2892df7766bb719a64e001bdd9a5 (patch)
tree9bcde058cca2b89385885984e4b59e3f11def26d
parentb17449e2d53c67fb7343e594d65dcbd915d1d0b0 (diff)
downloadATCD-1b4dabcbd23e2892df7766bb719a64e001bdd9a5.tar.gz
Remove sed search and replace as it malfunctions with files or directories ending or beginning with a 0, which in some cases like tests, causes the output links to break in the created report pages.
-rwxr-xr-xACE/bin/generate_compile_stats.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/ACE/bin/generate_compile_stats.sh b/ACE/bin/generate_compile_stats.sh
index feefae760ad..921119ca869 100755
--- a/ACE/bin/generate_compile_stats.sh
+++ b/ACE/bin/generate_compile_stats.sh
@@ -958,8 +958,7 @@ sort_list ()
#echo $i
done
- # sort eats underscores, soo...
- sed "s/___/000/g" ${DEST}/tmp_list | sort -f | sed "s/000/___/g"
+ sort -f ${DEST}/tmp_list
}
###############################################################################