diff options
Diffstat (limited to 'js/src/zydis/patch-include-headers.sh')
-rwxr-xr-x | js/src/zydis/patch-include-headers.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/js/src/zydis/patch-include-headers.sh b/js/src/zydis/patch-include-headers.sh new file mode 100755 index 0000000000..f3c5ac31cc --- /dev/null +++ b/js/src/zydis/patch-include-headers.sh @@ -0,0 +1,14 @@ +#!/bin/sh +for fn in `find . -name '*.[hc]'` +do + gawk ' +{ if (match($0, /( *# *include +)<(Zy.*ExportConfig.h|Zy(dis|core).*\.h)>/, res)) { + print res[1] "\"zydis/" res[2] "\"" + next + } else if (match($0, /( *# *include +)<(Generated\/.*\.inc)>/, res)) { + print res[1] "\"zydis/Zydis/" res[2] "\"" + next + } + print $0 }' $fn > $fn.bak + mv $fn.bak $fn +done |