(cosmetics) buildsys: remove FORCE_INSTALL

This commit is contained in:
Stefan Saraev 2015-08-03 15:55:11 +03:00
parent 24bee9dfb8
commit fbf57d1b47
2 changed files with 1 additions and 4 deletions

View File

@ -76,9 +76,6 @@ LINUX_DEPENDS="$PROJECT_DIR/$PROJECT/linux/linux.$TARGET_ARCH.conf $ROOT/package
# the nearest multiple of 16 kilobytes.
CCACHE_CACHE_SIZE="30G"
# forcing install of all packages (yes/no)
FORCE_INSTALL="no"
# install devtools on development builds
if [ "$OPENELEC_VERSION" = "devel" ]; then
DEVTOOLS=yes

View File

@ -41,7 +41,7 @@ fi
STAMP=$STAMPS_INSTALL/$PACKAGE_NAME/install_$TARGET
mkdir -p $STAMPS_INSTALL/$PACKAGE_NAME
[ -f $STAMP -a $FORCE_INSTALL = "no" ] && exit 0
[ -f $STAMP ] && exit 0
if [ -n "$PKG_ARCH" -a ! "$PKG_ARCH" = "any" ]; then
echo "$PKG_ARCH" | grep -q "$TARGET_ARCH" || exit 0