summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Mitz <mitza@ociweb.com>2016-08-10 10:27:05 -0500
committerGitHub <noreply@github.com>2016-08-10 10:27:05 -0500
commit72c5994d4fae5813925762afd1f1cc102ae88944 (patch)
tree7fd9ac9730b8a5787f59577db159624bd733e6df
parentb3b4e686bd2d86e398a4618299e6e68a23a6bc66 (diff)
parent1b4dabcbd23e2892df7766bb719a64e001bdd9a5 (diff)
downloadATCD-72c5994d4fae5813925762afd1f1cc102ae88944.tar.gz
Merge pull request #282 from oschwaldp-oci/topic_footprint_fixes
Footprint script fixes
-rwxr-xr-xACE/bin/generate_compile_stats.sh9
1 files changed, 4 insertions, 5 deletions
diff --git a/ACE/bin/generate_compile_stats.sh b/ACE/bin/generate_compile_stats.sh
index cbddc963c4c..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
}
###############################################################################
@@ -973,7 +972,7 @@ create_html ()
local DEST=$1
local TYPE=$2
- local ALL_BASE=""
+ local ALL_OBJS=""
local ACE_OBJS=""
local TAO_OBJS=""
local CIAO_OBJS=""
@@ -993,7 +992,7 @@ create_html ()
elif [ "${base}" != "${base#ACE}" ]; then
ACE_OBJS="${ACE_OBJS} ${base}"
fi
- ALL_OBJS="${ALL_BASE} ${base}"
+ ALL_OBJS="${ALL_OBJS} ${base}"
done
# create main page
@@ -1014,7 +1013,7 @@ create_html ()
sort_list ${DAnCE_OBJS} | create_page "DAnCE" ${TYPE} > ${DEST}/${name}
else
name="all_${TYPE}.html"
- sort_list ${ACE_OBJS} | create_page $BASE_TITLE ${TYPE} > ${DEST}/${name}
+ sort_list ${ALL_OBJS} | create_page $BASE_TITLE ${TYPE} > ${DEST}/${name}
fi
fi
}