config/path: split variables for source dirs in a own config file

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2010-12-16 13:44:14 +01:00
parent 09977ef83b
commit 98291ccaed
2 changed files with 7 additions and 1 deletions

View File

@ -36,7 +36,6 @@ fi
HOST_NAME=`$SCRIPTS/configtools/config.guess`
TARGET_NAME=$TARGET_FAMILY-openelec-linux-gnu
OPENELEC_SRC=http://sources.openelec.tv/src/$OPENELEC_VERSION
BUILD=$BUILD_BASE.$DISTRONAME-$PROJECT.$TARGET_ARCH.$OPENELEC_VERSION
TARGET_IMG=$ROOT/$TARGET
TARGET_ADDONS="$TARGET_IMG/$ADDONS/$ADDON_PATH"
@ -52,6 +51,8 @@ TARGET_PREFIX=$ROOT/$TOOLCHAIN/bin/$TARGET_NAME-
FAKEROOT_SCRIPT=$ROOT/.fakeroot.$PROJECT.$TARGET_ARCH
. config/sources
if [ "$OPENELEC_VERSION" = devel ]; then
DEBUG=no
DEVTOOLS=yes

5
config/sources Normal file
View File

@ -0,0 +1,5 @@
# OpenELEC Download site
OPENELEC_SRC="http://sources.openelec.tv/src/$OPENELEC_VERSION"
# Sourceforge download site
SOURCEFORGE_SRC="http://prdownloads.sourceforge.net"