Fix include path fixup for contrib/dev/acpica/include/platform/*.h.

This commit is contained in:
Jung-uk Kim 2009-06-02 20:00:32 +00:00
parent a9f12690a1
commit 3c4bac86de
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/acpica_20090521/; revision=193339

View File

@ -34,6 +34,7 @@ src_headers="acapps.h accommon.h acconfig.h acdebug.h acdisasm.h \
actypes.h acutils.h amlcode.h amlresrc.h platform/acenv.h \
platform/acfreebsd.h platform/acgcc.h"
comp_headers="aslcompiler.h asldefine.h aslglobal.h asltypes.h"
platform_headers="acfreebsd.h acgcc.h"
# pre-clean
echo pre-clean
@ -71,6 +72,10 @@ for H in ${comp_headers}; do
find ${dst}/compiler -name "*.[chly]" -type f | \
xargs sed -i "" -e "s|[\"<]$H[\">]|\<contrib/dev/acpica/compiler/$H\>|g"
done
for H in ${platform_headers}; do
find ${dst}/include/platform -name "*.h" -type f | \
xargs sed -i "" -e "s|[\"<]$H[\">]|\<contrib/dev/acpica/include/platform/$H\>|g"
done
# post-clean
echo post-clean