check_missing_headers.sh: stop looking in the old src/extensions dir

This commit is contained in:
George Kiagiadakis 2021-07-01 12:41:36 +03:00
parent 620b34cd6b
commit 45c045382e
1 changed files with 0 additions and 5 deletions

View File

@ -10,11 +10,6 @@ do
[ -f "$PREFIX/include/spa-0.2/$i" ] || LIST="$i $LIST"
done
for i in $(find src/extensions -name '*.h' | sed s#src/#pipewire/#);
do
[ -f "$PREFIX/include/pipewire-0.3/$i" ] || LIST="$i $LIST"
done
for i in $(find src/pipewire -name '*.h' -a -not -name '*private.h' | sed s#src/##);
do
[ -f "$PREFIX/include/pipewire-0.3/$i" ] || LIST="$i $LIST"