mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-24 11:16:51 +00:00
config/options.python: break if the path is not found
Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
parent
eb3faf87e2
commit
572c9036b8
@ -5,8 +5,8 @@ PYTHON_INCDIR="`ls -d $SYSROOT_PREFIX/usr/include/python*`"
|
||||
PYTHON_TOOLCHAIN_PATH=`ls -d $PYTHON_LIBDIR/site-packages`
|
||||
PYTHON_SYSROOT_PATH=$PYTHON_TOOLCHAIN_PATH
|
||||
|
||||
PYTHON_IMAGE_DIR="`ls -d $BUILD/image/system/usr/lib/python*`"
|
||||
PYTHON_IMAGE_PATH=`ls -d $PYTHON_IMAGE_DIR/site-packages`
|
||||
PYTHON_IMAGE_DIR="`ls -d $BUILD/image/system/usr/lib/python* || true`"
|
||||
PYTHON_IMAGE_PATH=`ls -d $PYTHON_IMAGE_DIR/site-packages || true`
|
||||
|
||||
export PYTHON="$ROOT/$TOOLCHAIN/bin/python"
|
||||
export LDSHARED="$CC -shared"
|
||||
|
Loading…
x
Reference in New Issue
Block a user