From 96fb256041e6d3534e5b6f21b8d7ec7d3907f67b Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sun, 20 Mar 2011 23:34:38 +0100 Subject: [PATCH] config/path: rename $TARGET_FAMILY to $TARGET-SUBARCH Signed-off-by: Stephan Raue --- config/path | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/path b/config/path index 1022476e5a..a2a0b77f88 100644 --- a/config/path +++ b/config/path @@ -3,16 +3,16 @@ set -e # determine architecture's family case $TARGET_ARCH in arm) - TARGET_FAMILY=arm + TARGET_SUBARCH=arm TARGET_ABI=eabi ;; i386) - TARGET_FAMILY=i686 + TARGET_SUBARCH=i686 ;; x86_64) - TARGET_FAMILY=x86_64 + TARGET_SUBARCH=x86_64 ;; esac @@ -43,7 +43,7 @@ fi ADDONS=addons HOST_NAME=`$SCRIPTS/configtools/config.guess` -TARGET_NAME=${TARGET_FAMILY}-openelec-linux-gnu${TARGET_ABI} +TARGET_NAME=${TARGET_SUBARCH}-openelec-linux-gnu${TARGET_ABI} BUILD=$BUILD_BASE.$DISTRONAME-$PROJECT.$TARGET_ARCH-$OPENELEC_VERSION TARGET_IMG=$ROOT/$TARGET