mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 13:46:49 +00:00
config/options:
- add support for "ARCH=??? make" to set Target Architecture
This commit is contained in:
parent
0c46acb452
commit
ee152b8b71
@ -1,6 +1,13 @@
|
|||||||
# Project name
|
# Project name
|
||||||
PROJECT=${PROJECT}
|
PROJECT=${PROJECT}
|
||||||
|
|
||||||
|
# determines TARGET_ARCH, if not forced by user
|
||||||
|
if [ -z "$ARCH" ]; then
|
||||||
|
TARGET_ARCH="i386"
|
||||||
|
else
|
||||||
|
TARGET_ARCH=$ARCH
|
||||||
|
fi
|
||||||
|
|
||||||
ROOT=`pwd`
|
ROOT=`pwd`
|
||||||
PROJECT_DIR=$ROOT/projects
|
PROJECT_DIR=$ROOT/projects
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user