Commit 73c0f955 authored by Vitaly Lipatov's avatar Vitaly Lipatov

pack_in_one.sh: add erc and ercat support

parent 649af257
...@@ -48,6 +48,10 @@ filter_out() ...@@ -48,6 +48,10 @@ filter_out()
grep -v "^[ ]*load_helper " | \ grep -v "^[ ]*load_helper " | \
sed -e 's|^eget()|disabled_eget()|g' | \ sed -e 's|^eget()|disabled_eget()|g' | \
sed -e 's|^onefile_eget()|eget()|g' | \ sed -e 's|^onefile_eget()|eget()|g' | \
sed -e 's|^erc()|disabled_erc()|g' | \
sed -e 's|^onefile_erc()|erc()|g' | \
sed -e 's|^ercat()|disabled_ercat()|g' | \
sed -e 's|^onefile_ercat()|ercat()|g' | \
sed -e 's|^estrlist()|disabled_estrlist()|g' | \ sed -e 's|^estrlist()|disabled_estrlist()|g' | \
sed -e 's|^onefile_estrlist()|estrlist()|g' | \ sed -e 's|^onefile_estrlist()|estrlist()|g' | \
sed -e 's|$SHAREDIR/tools_json|internal_tools_json|g' | \ sed -e 's|$SHAREDIR/tools_json|internal_tools_json|g' | \
...@@ -73,6 +77,8 @@ done | filter_out >>$OUTPUT ...@@ -73,6 +77,8 @@ done | filter_out >>$OUTPUT
incorporate_subfile bin/distr_info incorporate_subfile bin/distr_info
if [ "$PACKCOMMAND" = "epm" ] ; then if [ "$PACKCOMMAND" = "epm" ] ; then
incorporate_subfile bin/tools_eget incorporate_subfile bin/tools_eget
[ -f bin/tools_erc ] && incorporate_subfile bin/tools_erc
[ -f bin/tools_ercat ] && incorporate_subfile bin/tools_ercat
incorporate_subfile bin/tools_estrlist incorporate_subfile bin/tools_estrlist
incorporate_subfile bin/tools_json incorporate_subfile bin/tools_json
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment