Commit 0fe72423 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov

parasite: Make sure no dots in names generated

Some names may be "dot" mangled.
Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Acked-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 2a0cea29
...@@ -12,7 +12,7 @@ echo "/* Autogenerated file, don't edit */" ...@@ -12,7 +12,7 @@ echo "/* Autogenerated file, don't edit */"
echo "#ifndef $name_ifndef" echo "#ifndef $name_ifndef"
echo "#define $name_ifndef" echo "#define $name_ifndef"
echo "" echo ""
nm $name_objname | grep ' [Tt] ' | awk "$awk_cmd" nm $name_objname | grep ' [Tt] ' | sed -e 's/\./_/g' | awk "$awk_cmd"
echo "" echo ""
echo "static char $name_blob[] = {" echo "static char $name_blob[] = {"
hexdump -v -e '"\t"' -e '8/1 "0x%02x, "' -e '"\n"' $name_bin hexdump -v -e '"\t"' -e '8/1 "0x%02x, "' -e '"\n"' $name_bin
......
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