mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-24 11:16:51 +00:00
Merge pull request #8517 from heitbaum/make2
drop PKG_TOOLCHAIN hardcoding - already defaults to …
This commit is contained in:
commit
2f91a9f20a
@ -10,7 +10,6 @@ PKG_SITE="https://tracker.debian.org/pkg/fakeroot"
|
||||
PKG_URL="http://ftp.debian.org/debian/pool/main/f/fakeroot/${PKG_NAME}_${PKG_VERSION}.orig.tar.gz"
|
||||
PKG_DEPENDS_HOST="ccache:host libcap:host autoconf:host libtool:host"
|
||||
PKG_LONGDESC="fakeroot provides a fake root environment by means of LD_PRELOAD and SYSV IPC (or TCP) trickery."
|
||||
PKG_TOOLCHAIN="configure"
|
||||
|
||||
PKG_CONFIGURE_OPTS_HOST="--with-gnu-ld"
|
||||
|
||||
|
@ -10,7 +10,6 @@ PKG_SITE="https://github.com/raspberrypi/utils"
|
||||
PKG_URL="https://github.com/raspberrypi/utils/archive/${PKG_VERSION}.tar.gz"
|
||||
PKG_DEPENDS_TARGET="toolchain dtc"
|
||||
PKG_LONGDESC="Raspberry Pi related collection of scripts and simple applications"
|
||||
PKG_TOOLCHAIN="cmake"
|
||||
|
||||
makeinstall_target() {
|
||||
mkdir -p ${INSTALL}/usr/bin
|
||||
|
@ -9,7 +9,6 @@ PKG_SITE="https://github.com/Cloudef/bemenu"
|
||||
PKG_URL="https://github.com/Cloudef/bemenu/archive/${PKG_VERSION}.tar.gz"
|
||||
PKG_DEPENDS_TARGET="toolchain glib wayland wayland-protocols cairo pango libxkbcommon"
|
||||
PKG_LONGDESC="Dynamic menu library and client program inspired by dmenu"
|
||||
PKG_TOOLCHAIN="make"
|
||||
|
||||
PKG_MAKE_OPTS_TARGET="PREFIX=/usr clients wayland"
|
||||
|
||||
|
@ -104,7 +104,7 @@ if [ -z "${PKG_TOOLCHAIN}" -o "${PKG_TOOLCHAIN}" = "auto" ]; then
|
||||
PKG_TOOLCHAIN="cmake"
|
||||
elif [ -f "${PKG_CONFIGURE_SCRIPT}" ]; then
|
||||
PKG_TOOLCHAIN="configure"
|
||||
elif [ -f "${PKG_BUILD}/Makefile" ]; then
|
||||
elif [ -f "${PKG_BUILD}/GNUmakefile" -o -f "${PKG_BUILD}/Makefile" ]; then
|
||||
PKG_TOOLCHAIN="make"
|
||||
else
|
||||
die "Not possible to detect toolchain automatically. Add PKG_TOOLCHAIN= to package.mk"
|
||||
|
Loading…
x
Reference in New Issue
Block a user