mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-28 13:16:41 +00:00
scripts/build: remove 'hosttools', not used (anymore) target
Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
parent
a029deb2f1
commit
274e4c5028
@ -21,7 +21,7 @@
|
|||||||
. config/options $1
|
. config/options $1
|
||||||
|
|
||||||
if [ -z "$1" ]; then
|
if [ -z "$1" ]; then
|
||||||
echo "usage: $0 package_name[:<host|target|init|bootstrap|hosttools>]"
|
echo "usage: $0 package_name[:<host|target|init|bootstrap>]"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -65,8 +65,6 @@ if [ ! -f $STAMP ]; then
|
|||||||
|
|
||||||
if [ "$TARGET" = "bootstrap" -o "$TARGET" = "init" ]; then
|
if [ "$TARGET" = "bootstrap" -o "$TARGET" = "init" ]; then
|
||||||
setup_toolchain target
|
setup_toolchain target
|
||||||
elif [ "$TARGET" = "hosttools" ]; then
|
|
||||||
setup_toolchain host
|
|
||||||
else
|
else
|
||||||
setup_toolchain $TARGET
|
setup_toolchain $TARGET
|
||||||
fi
|
fi
|
||||||
@ -116,17 +114,6 @@ if [ ! -f $STAMP ]; then
|
|||||||
unset -f makeinstall_bootstrap
|
unset -f makeinstall_bootstrap
|
||||||
unset -f post_makeinstall_bootstrap
|
unset -f post_makeinstall_bootstrap
|
||||||
|
|
||||||
unset -f pre_build_hosttools
|
|
||||||
unset -f pre_configure_hosttools
|
|
||||||
unset -f configure_hosttools
|
|
||||||
unset -f post_configure_hosttools
|
|
||||||
unset -f pre_make_hosttools
|
|
||||||
unset -f make_hosttools
|
|
||||||
unset -f post_make_hosttools
|
|
||||||
unset -f pre_makeinstall_hosttools
|
|
||||||
unset -f makeinstall_hosttools
|
|
||||||
unset -f post_makeinstall_hosttools
|
|
||||||
|
|
||||||
# configure TARGET build defaults
|
# configure TARGET build defaults
|
||||||
unset -v TARGET_CONFIGURE_OPTS
|
unset -v TARGET_CONFIGURE_OPTS
|
||||||
TARGET_CONFIGURE_OPTS="--host=$TARGET_NAME \
|
TARGET_CONFIGURE_OPTS="--host=$TARGET_NAME \
|
||||||
@ -179,19 +166,6 @@ if [ ! -f $STAMP ]; then
|
|||||||
--disable-static \
|
--disable-static \
|
||||||
--enable-shared"
|
--enable-shared"
|
||||||
|
|
||||||
# configure HOSTTOOLS build defaults
|
|
||||||
unset -v HOSTTOOLS_CONFIGURE_OPTS
|
|
||||||
HOSTTOOLS_CONFIGURE_OPTS="--host=$HOST_NAME \
|
|
||||||
--build=$HOST_NAME \
|
|
||||||
--prefix=$ROOT/$TOOLCHAIN \
|
|
||||||
--bindir=$ROOT/$TOOLCHAIN/bin \
|
|
||||||
--sbindir=$ROOT/$TOOLCHAIN/sbin \
|
|
||||||
--sysconfdir=$ROOT/$TOOLCHAIN/etc \
|
|
||||||
--libexecdir=$ROOT/$TOOLCHAIN/lib \
|
|
||||||
--localstatedir=$ROOT/$TOOLCHAIN/var \
|
|
||||||
--disable-static \
|
|
||||||
--enable-shared"
|
|
||||||
|
|
||||||
# include buildfile
|
# include buildfile
|
||||||
. $PKG_DIR/package.mk
|
. $PKG_DIR/package.mk
|
||||||
|
|
||||||
@ -211,10 +185,6 @@ if [ ! -f $STAMP ]; then
|
|||||||
for p in $PKG_BUILD_DEPENDS_BOOTSTRAP; do
|
for p in $PKG_BUILD_DEPENDS_BOOTSTRAP; do
|
||||||
$SCRIPTS/build $p
|
$SCRIPTS/build $p
|
||||||
done
|
done
|
||||||
elif [ "$TARGET" = "hosttools" ]; then
|
|
||||||
for p in $PKG_BUILD_DEPENDS_HOSTTOOLS; do
|
|
||||||
$SCRIPTS/build $p
|
|
||||||
done
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$PKG_AUTORECONF" = yes ]; then
|
if [ "$PKG_AUTORECONF" = yes ]; then
|
||||||
@ -282,11 +252,6 @@ if [ ! -f $STAMP ]; then
|
|||||||
mkdir -p .$TARGET_NAME-bootstrap
|
mkdir -p .$TARGET_NAME-bootstrap
|
||||||
cd .$TARGET_NAME-bootstrap
|
cd .$TARGET_NAME-bootstrap
|
||||||
fi
|
fi
|
||||||
elif [ "$TARGET" = "hosttools" ]; then
|
|
||||||
if [ -f "$PKG_CONFIGURE_SCRIPT" -o -f "$PKG_CMAKE_SCRIPT" ]; then
|
|
||||||
mkdir -p .$TARGET_NAME-hosttools
|
|
||||||
cd .$TARGET_NAME-hosttools
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# configure
|
# configure
|
||||||
@ -304,8 +269,6 @@ if [ ! -f $STAMP ]; then
|
|||||||
$PKG_CONFIGURE_SCRIPT $INIT_CONFIGURE_OPTS $PKG_CONFIGURE_OPTS_INIT
|
$PKG_CONFIGURE_SCRIPT $INIT_CONFIGURE_OPTS $PKG_CONFIGURE_OPTS_INIT
|
||||||
elif [ "$TARGET" = "bootstrap" ]; then
|
elif [ "$TARGET" = "bootstrap" ]; then
|
||||||
$PKG_CONFIGURE_SCRIPT $BOOTSTRAP_CONFIGURE_OPTS $PKG_CONFIGURE_OPTS_BOOTSTRAP
|
$PKG_CONFIGURE_SCRIPT $BOOTSTRAP_CONFIGURE_OPTS $PKG_CONFIGURE_OPTS_BOOTSTRAP
|
||||||
elif [ "$TARGET" = "hosttools" ]; then
|
|
||||||
$PKG_CONFIGURE_SCRIPT $HOSTTOOLS_CONFIGURE_OPTS $PKG_CONFIGURE_OPTS_HOSTTOOLS
|
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
if [ "$(type -t post_configure_$TARGET)" = "function" ]; then
|
if [ "$(type -t post_configure_$TARGET)" = "function" ]; then
|
||||||
@ -327,8 +290,6 @@ if [ ! -f $STAMP ]; then
|
|||||||
make $PKG_MAKE_OPTS_INIT
|
make $PKG_MAKE_OPTS_INIT
|
||||||
elif [ "$TARGET" = "bootstrap" ]; then
|
elif [ "$TARGET" = "bootstrap" ]; then
|
||||||
make $PKG_MAKE_OPTS_BOOTSTRAP
|
make $PKG_MAKE_OPTS_BOOTSTRAP
|
||||||
elif [ "$TARGET" = "hosttools" ]; then
|
|
||||||
make $PKG_MAKE_OPTS_HOSTTOOLS
|
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
if [ "$(type -t post_make_$TARGET)" = "function" ]; then
|
if [ "$(type -t post_make_$TARGET)" = "function" ]; then
|
||||||
@ -351,8 +312,6 @@ if [ ! -f $STAMP ]; then
|
|||||||
make install DESTDIR=$INSTALL $PKG_MAKEINSTALL_OPTS_INIT
|
make install DESTDIR=$INSTALL $PKG_MAKEINSTALL_OPTS_INIT
|
||||||
elif [ "$TARGET" = "bootstrap" ]; then
|
elif [ "$TARGET" = "bootstrap" ]; then
|
||||||
$MAKEINSTALL $PKG_MAKEINSTALL_OPTS_BOOTSTRAP
|
$MAKEINSTALL $PKG_MAKEINSTALL_OPTS_BOOTSTRAP
|
||||||
elif [ "$TARGET" = "hosttools" ]; then
|
|
||||||
make install $PKG_MAKEINSTALL_OPTS_HOSTTOOLS
|
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
if [ "$(type -t post_makeinstall_$TARGET)" = "function" ]; then
|
if [ "$(type -t post_makeinstall_$TARGET)" = "function" ]; then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user