scripts/install: disable fastinstall (must be reworked)

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2010-10-20 02:27:00 +02:00
parent f2cd38fe07
commit 1883020a3d

View File

@ -7,15 +7,15 @@ if [ -z "$1" ]; then
exit 1 exit 1
fi fi
mkdir -p $INSTALLSTAMPS/$1 # mkdir -p $INSTALLSTAMPS/$1
INSTALLSTAMP=$INSTALLSTAMPS/$1/install # INSTALLSTAMP=$INSTALLSTAMPS/$1/install
if [ $1 = "image" ]; then # if [ $1 = "image" ]; then
rm -rf $INSTALLSTAMPS # rm -rf $INSTALLSTAMPS
mkdir -p $INSTALLSTAMPS/image # mkdir -p $INSTALLSTAMPS/image
fi # fi
if [ ! -f $INSTALLSTAMP ]; then # if [ ! -f $INSTALLSTAMP ]; then
if [ -f $PKG_DIR/arch ]; then if [ -f $PKG_DIR/arch ]; then
grep -q "$TARGET_ARCH" "$PKG_DIR/arch" || exit 0 grep -q "$TARGET_ARCH" "$PKG_DIR/arch" || exit 0
@ -55,5 +55,5 @@ if [ ! -f $INSTALLSTAMP ]; then
$PKG_DIR/install $@ >&$VERBOSE_OUT $PKG_DIR/install $@ >&$VERBOSE_OUT
fi fi
touch $INSTALLSTAMP # touch $INSTALLSTAMP
fi # fi