mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-24 11:16:51 +00:00
xbmc: add support for arch specific patches, move XVBA patch to arch specific patches to prevent build issues
Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
parent
0c7243afe8
commit
7ace37722c
@ -22,6 +22,15 @@
|
||||
|
||||
. config/options $1
|
||||
|
||||
echo "### Applying architecture based patches ###"
|
||||
|
||||
if [ ! $TARGET_ARCH = arm ]; then
|
||||
for patch in `ls $PKG_DIR/patches.x86`; do
|
||||
cat $PKG_DIR/patches.x86/$patch | patch -d \
|
||||
`echo $PKG_BUILD | cut -f1 -d\ ` -p1
|
||||
done
|
||||
fi
|
||||
|
||||
echo "### Applying project based patches ###"
|
||||
|
||||
for patch in `ls $PROJECT_DIR/$PROJECT/patches/$1`; do
|
||||
|
Loading…
x
Reference in New Issue
Block a user