diff --git a/scripts/clean b/scripts/clean index e8170d3025..ac72cf1752 100755 --- a/scripts/clean +++ b/scripts/clean @@ -30,8 +30,8 @@ clean_package() { fi for i in $BUILD/$1-*; do - if [ -d $i -a -f "$i/.openelec-unpack" ] ; then - . "$i/.openelec-unpack" + if [ -d $i -a -f "$i/.libreelec-unpack" ] ; then + . "$i/.libreelec-unpack" if [ "$STAMP_PKG_NAME" = "$1" ]; then printf "%${BUILD_INDENT}c ${boldred}*${endcolor} ${red}Removing $i ...${endcolor}\n" ' '>&$SILENT_OUT rm -rf $i diff --git a/scripts/skip_unpack b/scripts/skip_unpack index 4457c74c1e..c9a58688df 100755 --- a/scripts/skip_unpack +++ b/scripts/skip_unpack @@ -30,7 +30,7 @@ if [ ! -f $PKG_DIR/package.mk ]; then exit 1 fi -STAMP=$PKG_BUILD/.openelec-unpack +STAMP=$PKG_BUILD/.libreelec-unpack if [ -f $STAMP ] ; then printf "%${BUILD_INDENT}c ${boldcyan}SKIP_UNPACK${endcolor} $1\n" ' '>&$SILENT_OUT diff --git a/scripts/unpack b/scripts/unpack index 897da566ff..90eea3f133 100755 --- a/scripts/unpack +++ b/scripts/unpack @@ -32,7 +32,7 @@ fi $SCRIPTS/get $1 -STAMP=$PKG_BUILD/.openelec-unpack +STAMP=$PKG_BUILD/.libreelec-unpack mkdir -p $BUILD @@ -41,8 +41,8 @@ mkdir -p $BUILD STAMP_DEPENDS="$PKG_DIR $PKG_NEED_UNPACK $PROJECT_DIR/$PROJECT/patches/$PKG_NAME" for i in $BUILD/$1-*; do - if [ -d $i -a -f "$i/.openelec-unpack" ] ; then - . "$i/.openelec-unpack" + if [ -d $i -a -f "$i/.libreelec-unpack" ] ; then + . "$i/.libreelec-unpack" if [ "$STAMP_PKG_NAME" = "$1" ]; then PKG_DEEPMD5=$(find $STAMP_DEPENDS -exec md5sum {} \; 2>/dev/null | sort | md5sum | cut -d" " -f1) if [ ! "$PKG_DEEPMD5" = "$STAMP_PKG_DEEPMD5" ] ; then