mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-16 05:08:12 +01:00
c2e6b4ced0
(Logical change 1.70)
7 lines
212 B
Bash
7 lines
212 B
Bash
#!/bin/sh
|
|
for gname in G*.c G*.cxx; do
|
|
lname="L$(expr $gname : '.\(.*\)')"
|
|
bk edit $lname >/dev/null 2>&1
|
|
echo -e "#ifndef UNW_REMOTE_ONLY\n#define UNW_LOCAL_ONLY\n\
|
|
#include \"$gname\"\n#endif" > $lname
|
|
done
|