From 2703a712e4d005a13445286280fcec99a350b5b6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?N=C3=A9meth=20Ott=C3=B3?= Date: Mon, 18 Nov 2019 14:42:52 +0100 Subject: [PATCH] cleanup --- .../b/ncurses/0001-gcc-5.x-MKlib_gen.patch | 43 ------ .../b/ncurses/0002-recognise-uclinux.patch | 29 ---- buildroot/_buildroot/b/ncurses/Config.in | 26 ---- buildroot/_buildroot/b/ncurses/ncurses.hash | 2 - buildroot/_buildroot/b/ncurses/ncurses.mk | 166 --------------------- buildroot/_buildroot/b/python-sip/Config.in | 29 ---- buildroot/_buildroot/b/python-sip/python-sip.hash | 4 - buildroot/_buildroot/b/python-sip/python-sip.mk | 141 ----------------- buildroot/_buildroot/b/python-sip/python-sip.mk2 | 155 ------------------- 9 files changed, 595 deletions(-) delete mode 100644 buildroot/_buildroot/b/ncurses/0001-gcc-5.x-MKlib_gen.patch delete mode 100644 buildroot/_buildroot/b/ncurses/0002-recognise-uclinux.patch delete mode 100644 buildroot/_buildroot/b/ncurses/Config.in delete mode 100644 buildroot/_buildroot/b/ncurses/ncurses.hash delete mode 100644 buildroot/_buildroot/b/ncurses/ncurses.mk delete mode 100644 buildroot/_buildroot/b/python-sip/Config.in delete mode 100644 buildroot/_buildroot/b/python-sip/python-sip.hash delete mode 100644 buildroot/_buildroot/b/python-sip/python-sip.mk delete mode 100644 buildroot/_buildroot/b/python-sip/python-sip.mk2 diff --git a/buildroot/_buildroot/b/ncurses/0001-gcc-5.x-MKlib_gen.patch b/buildroot/_buildroot/b/ncurses/0001-gcc-5.x-MKlib_gen.patch deleted file mode 100644 index df7c15f..0000000 --- a/buildroot/_buildroot/b/ncurses/0001-gcc-5.x-MKlib_gen.patch +++ /dev/null @@ -1,43 +0,0 @@ -Fix gcc 5.x build failure - -Extracted from upstream commit -http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=97bb4678dc03e753290b39bbff30ba2825df9517. - -+ modify MKlib_gen.sh to work around change in development version of - gcc introduced here: - https://gcc.gnu.org/ml/gcc-patches/2014-06/msg02185.html - https://gcc.gnu.org/ml/gcc-patches/2014-07/msg00236.html - (reports by Marcus Shawcroft, Maohui Lei). - -Original author: Thomas E. Dickey -Signed-off-by: Mikhail Peselnik - ---- a/ncurses/base/MKlib_gen.sh 2015-08-06 20:48:24.000000000 -0400 -+++ b/ncurses/base/MKlib_gen.sh 2017-02-07 10:09:01.293962392 -0500 -@@ -491,11 +491,22 @@ - -e 's/gen_$//' \ - -e 's/ / /g' >>$TMP - -+cat >$ED1 < $ED2 -+cat $ED2 >$TMP -+ - $preprocessor $TMP 2>/dev/null \ --| sed \ -- -e 's/ / /g' \ -- -e 's/^ //' \ -- -e 's/_Bool/NCURSES_BOOL/g' \ -+| sed -f $ED1 \ - | $AWK -f $AW2 \ - | sed -f $ED3 \ - | sed \ diff --git a/buildroot/_buildroot/b/ncurses/0002-recognise-uclinux.patch b/buildroot/_buildroot/b/ncurses/0002-recognise-uclinux.patch deleted file mode 100644 index 57dd4cf..0000000 --- a/buildroot/_buildroot/b/ncurses/0002-recognise-uclinux.patch +++ /dev/null @@ -1,29 +0,0 @@ -aclocal: fix detection for uclinux hosts -uclinux is just a linux like the others... - -Signed-off-by: "Yann E. MORIN" -Signed-off-by: "Adam Duskett" - ---- a/aclocal.m4 2015-08-05 20:46:34.000000000 -0400 -+++ b/aclocal.m4 2017-02-07 09:58:17.770056849 -0500 -@@ -7656,7 +7656,7 @@ - cf_xopen_source="-D_SGI_SOURCE" - cf_XOPEN_SOURCE= - ;; --(linux*|gnu*|mint*|k*bsd*-gnu) -+(linux*|uclinux*|gnu*|mint*|k*bsd*-gnu) - CF_GNU_SOURCE - ;; - (minix*) -diff -durN a/configure b/configure ---- a/configure 2015-08-05 05:20:32.000000000 -0400 -+++ b/configure 2017-02-07 09:58:52.883886426 -0500 -@@ -7869,7 +7869,7 @@ - cf_xopen_source="-D_SGI_SOURCE" - cf_XOPEN_SOURCE= - ;; --(linux*|gnu*|mint*|k*bsd*-gnu) -+(linux*|uclinux*|gnu*|mint*|k*bsd*-gnu) - - echo "$as_me:7874: checking if we must define _GNU_SOURCE" >&5 - echo $ECHO_N "checking if we must define _GNU_SOURCE... $ECHO_C" >&6 diff --git a/buildroot/_buildroot/b/ncurses/Config.in b/buildroot/_buildroot/b/ncurses/Config.in deleted file mode 100644 index 92be164..0000000 --- a/buildroot/_buildroot/b/ncurses/Config.in +++ /dev/null @@ -1,26 +0,0 @@ -config BR2_PACKAGE_NCURSES - bool "ncurses" - help - The Ncurses (new curses) library is a free software emulation of - curses in System V Release 4.0, and more. - - This package installs only a few vital termcap entries - - http://www.gnu.org/software/ncurses/ - -if BR2_PACKAGE_NCURSES - -config BR2_PACKAGE_NCURSES_WCHAR - bool "enable wide char support" - depends on BR2_USE_WCHAR - # Build broken @ curses.priv.h with bad declarations - depends on !(BR2_bfin && BR2_BINFMT_FLAT) - help - Enable wide char & UTF-8 support in ncurses libraries - -config BR2_PACKAGE_NCURSES_TARGET_PROGS - bool "ncurses programs" - help - Include ncurses programs in target (clear, reset, tput, ...) - -endif diff --git a/buildroot/_buildroot/b/ncurses/ncurses.hash b/buildroot/_buildroot/b/ncurses/ncurses.hash deleted file mode 100644 index 6bca143..0000000 --- a/buildroot/_buildroot/b/ncurses/ncurses.hash +++ /dev/null @@ -1,2 +0,0 @@ -# Locally calculated after checking pgp signature -sha256 f551c24b30ce8bfb6e96d9f59b42fbea30fa3a6123384172f9e7284bcf647260 ncurses-6.0.tar.gz diff --git a/buildroot/_buildroot/b/ncurses/ncurses.mk b/buildroot/_buildroot/b/ncurses/ncurses.mk deleted file mode 100644 index 4046032..0000000 --- a/buildroot/_buildroot/b/ncurses/ncurses.mk +++ /dev/null @@ -1,166 +0,0 @@ -################################################################################ -# -# ncurses -# -################################################################################ - -NCURSES_VERSION = 6.0 -NCURSES_SITE = $(BR2_GNU_MIRROR)/ncurses -NCURSES_INSTALL_STAGING = YES -NCURSES_DEPENDENCIES = -NCURSES_LICENSE = MIT with advertising clause -NCURSES_LICENSE_FILES = README -NCURSES_CONFIG_SCRIPTS = ncurses$(NCURSES_LIB_SUFFIX)6-config - -NCURSES_CONF_OPTS = \ - --without-cxx \ - --without-cxx-binding \ - --without-ada \ - --without-tests \ - --disable-big-core \ - --without-profile \ - --disable-rpath \ - --disable-rpath-hack \ - --enable-echo \ - --enable-const \ - --enable-overwrite \ - --enable-pc-files \ - --with-pkg-config-libdir="/usr/lib/pkgconfig" \ - $(if $(BR2_PACKAGE_NCURSES_TARGET_PROGS),,--without-progs) \ - --without-manpages - -ifeq ($(BR2_STATIC_LIBS),y) -NCURSES_CONF_OPTS += --without-shared --with-normal -else ifeq ($(BR2_SHARED_LIBS),y) -NCURSES_CONF_OPTS += --with-shared --without-normal -else ifeq ($(BR2_SHARED_STATIC_LIBS),y) -NCURSES_CONF_OPTS += --with-shared --with-normal -endif - -# configure can't find the soname for libgpm when cross compiling -ifeq ($(BR2_PACKAGE_GPM),y) -NCURSES_CONF_OPTS += --with-gpm=libgpm.so.2 -NCURSES_DEPENDENCIES += gpm -else -NCURSES_CONF_OPTS += --without-gpm -endif - -NCURSES_TERMINFO_FILES = \ - a/ansi \ - l/linux \ - p/putty \ - p/putty-vt100 \ - s/screen \ - v/vt100 \ - v/vt100-putty \ - v/vt102 \ - v/vt200 \ - v/vt220 \ - x/xterm \ - x/xterm-color \ - x/xterm-xfree86 - -ifeq ($(BR2_PACKAGE_NCURSES_WCHAR),y) -NCURSES_CONF_OPTS += --enable-widec -NCURSES_LIB_SUFFIX = w -NCURSES_LIBS = ncurses menu panel form - -define NCURSES_LINK_LIBS_STATIC - $(foreach lib,$(NCURSES_LIBS:%=lib%), \ - ln -sf $(lib)$(NCURSES_LIB_SUFFIX).a $(STAGING_DIR)/usr/lib/$(lib).a - ) - ln -sf libncurses$(NCURSES_LIB_SUFFIX).a \ - $(STAGING_DIR)/usr/lib/libcurses.a -endef - -define NCURSES_LINK_LIBS_SHARED - $(foreach lib,$(NCURSES_LIBS:%=lib%), \ - ln -sf $(lib)$(NCURSES_LIB_SUFFIX).so $(STAGING_DIR)/usr/lib/$(lib).so - ) - ln -sf libncurses$(NCURSES_LIB_SUFFIX).so \ - $(STAGING_DIR)/usr/lib/libcurses.so -endef - -define NCURSES_LINK_PC - $(foreach pc,$(NCURSES_LIBS), \ - ln -sf $(pc)$(NCURSES_LIB_SUFFIX).pc \ - $(STAGING_DIR)/usr/lib/pkgconfig/$(pc).pc - ) -endef - -NCURSES_LINK_STAGING_LIBS = \ - $(if $(BR2_STATIC_LIBS)$(BR2_SHARED_STATIC_LIBS),$(call NCURSES_LINK_LIBS_STATIC);) \ - $(if $(BR2_SHARED_LIBS)$(BR2_SHARED_STATIC_LIBS),$(call NCURSES_LINK_LIBS_SHARED)) - -NCURSES_LINK_STAGING_PC = $(call NCURSES_LINK_PC) - -NCURSES_CONF_OPTS += --enable-ext-colors -NCURSES_TERMINFO_FILES += \ - p/putty-256color \ - x/xterm+256color \ - x/xterm-256color - -NCURSES_POST_INSTALL_STAGING_HOOKS += NCURSES_LINK_STAGING_LIBS -NCURSES_POST_INSTALL_STAGING_HOOKS += NCURSES_LINK_STAGING_PC - -endif # BR2_PACKAGE_NCURSES_WCHAR - -ifneq ($(BR2_ENABLE_DEBUG),y) -NCURSES_CONF_OPTS += --without-debug -endif - -# ncurses breaks with parallel build, but takes quite a while to -# build single threaded. Work around it similar to how Gentoo does -define NCURSES_BUILD_CMDS - $(TARGET_MAKE_ENV) $(MAKE1) -C $(@D) DESTDIR=$(STAGING_DIR) sources - rm -rf $(@D)/misc/pc-files - $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(STAGING_DIR) -endef - -ifeq ($(BR2_PACKAGE_NCURSES_TARGET_PROGS),y) -define NCURSES_TARGET_SYMLINK_RESET - ln -sf tset $(TARGET_DIR)/usr/bin/reset -endef -NCURSES_POST_INSTALL_TARGET_HOOKS += NCURSES_TARGET_SYMLINK_RESET -endif - -define NCURSES_TARGET_CLEANUP_TERMINFO - $(RM) -rf $(TARGET_DIR)/usr/share/terminfo $(TARGET_DIR)/usr/share/tabset -# $(foreach t,$(NCURSES_TERMINFO_FILES), \ -# $(INSTALL) -D -m 0644 $(STAGING_DIR)/usr/share/terminfo/$(t) \ -# $(TARGET_DIR)/usr/share/terminfo/$(t) -# ) -endef -NCURSES_POST_INSTALL_TARGET_HOOKS += NCURSES_TARGET_CLEANUP_TERMINFO - - -define NCURSES_TARGET_CLEANUP_TERMINFO - $(RM) -rf $(TARGET_DIR)/usr/share/terminfo $(TARGET_DIR)/usr/share/tabset -# $(foreach t,$(TERMINFO_FILES), \ -# $(INSTALL) -D -m 0644 $(STAGING_DIR)/usr/share/terminfo/$(t) \ -# $(TARGET_DIR)/usr/share/terminfo/$(t) -# ) -endef -NCURSES_POST_INSTALL_TARGET_HOOKS += NCURSES_TARGET_CLEANUP_TERMINFO - -# -# On systems with an older version of tic, the installation of ncurses hangs -# forever. To resolve the problem, build a static version of tic on host -# ourselves, and use that during installation. -# -define HOST_NCURSES_BUILD_CMDS - $(HOST_MAKE_ENV) $(MAKE1) -C $(@D) sources - $(HOST_MAKE_ENV) $(MAKE) -C $(@D)/progs tic -endef - -HOST_NCURSES_CONF_OPTS = \ - --with-shared \ - --without-gpm \ - --without-manpages \ - --without-cxx \ - --without-cxx-binding \ - --without-ada \ - --without-normal - -$(eval $(autotools-package)) -$(eval $(host-autotools-package)) diff --git a/buildroot/_buildroot/b/python-sip/Config.in b/buildroot/_buildroot/b/python-sip/Config.in deleted file mode 100644 index 1f8961d..0000000 --- a/buildroot/_buildroot/b/python-sip/Config.in +++ /dev/null @@ -1,29 +0,0 @@ -comment "python-sip needs a toolchain w/ C++, threads" - depends on BR2_USE_MMU - depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS - -comment "python-sip needs qt or qt5" - depends on BR2_USE_MMU - depends on BR2_INSTALL_LIBSTDCPP && BR2_TOOLCHAIN_HAS_THREADS - depends on !BR2_PACKAGE_QT && !BR2_PACKAGE_QT5 - -config BR2_PACKAGE_PYTHON_SIP - bool "python-sip" - depends on BR2_INSTALL_LIBSTDCPP # qt - depends on BR2_TOOLCHAIN_HAS_THREADS # qt - depends on BR2_USE_MMU # qt - depends on BR2_PACKAGE_QT || BR2_PACKAGE_QT5 - help - SIP is a tool that makes it very easy to create Python - bindings for C and C++ libraries. It was originally - developed to create PyQt, the Python bindings for the Qt - toolkit, but can be used to create bindings for any C or C++ - library. - - SIP comprises a code generator and a Python module. The code - generator processes a set of specification files and - generates C or C++ code which is then compiled to create the - bindings extension module. The SIP Python module provides - support functions to the automatically generated code. - - http://www.riverbankcomputing.com/software/sip/intro diff --git a/buildroot/_buildroot/b/python-sip/python-sip.hash b/buildroot/_buildroot/b/python-sip/python-sip.hash deleted file mode 100644 index 2f7d430..0000000 --- a/buildroot/_buildroot/b/python-sip/python-sip.hash +++ /dev/null @@ -1,4 +0,0 @@ -# From https://sourceforge.net/projects/pyqt/files/sip/sip-4.18/ -md5 78724bf2a79878201c3bc81a1d8248ea sip-4.18.tar.gz -# Locally calculated: -sha256 f1dc5c81c07a9ad97edcd4a0af964a41e420024ba7ca165afd2b351efd249cb6 sip-4.18.tar.gz diff --git a/buildroot/_buildroot/b/python-sip/python-sip.mk b/buildroot/_buildroot/b/python-sip/python-sip.mk deleted file mode 100644 index 05da51c..0000000 --- a/buildroot/_buildroot/b/python-sip/python-sip.mk +++ /dev/null @@ -1,141 +0,0 @@ -################################################################################ -# -# python-sip -# -################################################################################ - -PYTHON_SIP_VERSION = 4.18 -PYTHON_SIP_SOURCE = sip-$(PYTHON_SIP_VERSION).tar.gz -PYTHON_SIP_SITE = http://downloads.sourceforge.net/project/pyqt/sip/sip-$(PYTHON_SIP_VERSION) -PYTHON_SIP_LICENSE = SIP license or GPL-2.0 or GPL-3.0 -PYTHON_SIP_LICENSE_FILES = LICENSE LICENSE-GPL2 LICENSE-GPL3 - -ifeq ($(BR2_PACKAGE_QT5),y) -PYTHON_SIP_DEPENDENCIES = qt5base -else -PYTHON_SIP_DEPENDENCIES = qt -endif - -ifeq ($(BR2_PACKAGE_PYTHON),y) -PYTHON_SIP_DEPENDENCIES += python -HOST_PYTHON_SIP_DEPENDENCIES += host-python -PYTHON_SIP_LIB_DIR = usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages -PYTHON_SIP_INCLUDE_DIR = usr/include/python$(PYTHON_VERSION_MAJOR) -else ifeq ($(BR2_PACKAGE_PYTHON3),y) -PYTHON_SIP_DEPENDENCIES += python3 -HOST_PYTHON_SIP_DEPENDENCIES += host-python3 -PYTHON_SIP_LIB_DIR = usr/lib/python$(PYTHON3_VERSION_MAJOR)/site-packages -PYTHON_SIP_INCLUDE_DIR = usr/include/python$(PYTHON3_VERSION_MAJOR)m -endif - -define HOST_PYTHON_SIP_CONFIGURE_CMDS - (cd $(@D); \ - $(HOST_MAKE_ENV) $(HOST_CONFIGURE_OPTS) $(HOST_DIR)/usr/bin/python configure.py) -endef - -define HOST_PYTHON_SIP_BUILD_CMDS - $(HOST_MAKE_ENV) $(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D) -endef - -define HOST_PYTHON_SIP_INSTALL_CMDS - $(HOST_MAKE_ENV) $(HOST_CONFIGURE_OPTS) $(MAKE) install -C $(@D) -endef - -define PYTHON_SIP_CONFIGURE_CMDS - (cd $(@D); \ - err $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(HOST_DIR)/usr/bin/python configure.py \ - --bindir $(TARGET_DIR)/usr/bin \ - --destdir $(TARGET_DIR)/$(PYTHON_SIP_LIB_DIR) \ - --incdir $(STAGING_DIR)/$(PYTHON_SIP_INCLUDE_DIR) \ - --sipdir $(TARGET_DIR)/usr/share/sip \ - --sysroot $(STAGING_DIR)/usr \ - --use-qmake && \ - $(HOST_DIR)/usr/bin/qmake) -endef - -define PYTHON_SIP_BUILD_CMDS - err \ - err \ - asd \ - $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) -endef - - -define AVAHI_INSTALL_AUTOIPD - rm -f $(TARGET_DIR)/var/lib/avahi-autoipd - - rm -f /lib/avahi-autoipd \ -A \ - $(TARGET_DIR)/var - $(INSTALL) -d -m 0755 $(TARGET_DIR)/var/lib - ln -sf /tmp/avahi-autoipd $(TARGET_DIR)/var/lib/avahi-autoipd -endef - -define PYTHON_SIP_INSTALL_TARGET_CMDS - -err - - -err \ - - -err \ -use - - -err -use - - - - err \ - asd \ - use - - err \ - asd - - asd \ - fgh \ - use \ - err \ - asd \ - - - asd \ - err \ - asd - - - asd \ - err - - asd \ - err \ - - - asd \ - - asd \ - use - - asd \ - use - - - - asd \ - err - - - -asd - -asd \ - - - $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) install -C $(@D) -endef - -$(eval $(generic-package)) -$(eval $(host-generic-package)) diff --git a/buildroot/_buildroot/b/python-sip/python-sip.mk2 b/buildroot/_buildroot/b/python-sip/python-sip.mk2 deleted file mode 100644 index 38c3c4d..0000000 --- a/buildroot/_buildroot/b/python-sip/python-sip.mk2 +++ /dev/null @@ -1,155 +0,0 @@ -################################################################################ -# -# python-sip -# -################################################################################ - -PYTHON_SIP_VERSION = 4.18 -PYTHON_SIP_SOURCE = sip-$(PYTHON_SIP_VERSION).tar.gz -PYTHON_SIP_SITE = http://downloads.sourceforge.net/project/pyqt/sip/sip-$(PYTHON_SIP_VERSION) -PYTHON_SIP_LICENSE = SIP license or GPL-2.0 or GPL-3.0 -PYTHON_SIP_LICENSE_FILES = LICENSE LICENSE-GPL2 LICENSE-GPL3 - -ifeq ($(BR2_PACKAGE_QT5),y) -PYTHON_SIP_DEPENDENCIES = qt5base -else -PYTHON_SIP_DEPENDENCIES = qt -endif - -ifeq ($(BR2_PACKAGE_PYTHON),y) -PYTHON_SIP_DEPENDENCIES += python -HOST_PYTHON_SIP_DEPENDENCIES += host-python -PYTHON_SIP_LIB_DIR = usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages -PYTHON_SIP_INCLUDE_DIR = usr/include/python$(PYTHON_VERSION_MAJOR) -else ifeq ($(BR2_PACKAGE_PYTHON3),y) -PYTHON_SIP_DEPENDENCIES += python3 -HOST_PYTHON_SIP_DEPENDENCIES += host-python3 -PYTHON_SIP_LIB_DIR = usr/lib/python$(PYTHON3_VERSION_MAJOR)/site-packages -PYTHON_SIP_INCLUDE_DIR = usr/include/python$(PYTHON3_VERSION_MAJOR)m -endif - -define HOST_PYTHON_SIP_CONFIGURE_CMDS - (cd $(@D); \ - $(HOST_MAKE_ENV) $(HOST_CONFIGURE_OPTS) $(HOST_DIR)/usr/bin/python configure.py) -endef - -define HOST_PYTHON_SIP_BUILD_CMDS - $(HOST_MAKE_ENV) $(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D) -endef - -define HOST_PYTHON_SIP_INSTALL_CMDS - $(HOST_MAKE_ENV) $(HOST_CONFIGURE_OPTS) $(MAKE) install -C $(@D) -endef - -define PYTHON_SIP_CONFIGURE_CMDS - (cd $(@D); \ - err $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(HOST_DIR)/usr/bin/python configure.py \ - --bindir $(TARGET_DIR)/usr/bin \ - --destdir $(TARGET_DIR)/$(PYTHON_SIP_LIB_DIR) \ - --incdir $(STAGING_DIR)/$(PYTHON_SIP_INCLUDE_DIR) \ - --sipdir $(TARGET_DIR)/usr/share/sip \ - --sysroot $(STAGING_DIR)/usr \ - --use-qmake && \ - $(HOST_DIR)/usr/bin/qmake) -endef - -define PYTHON_SIP_BUILD_CMDS - err \ - err \ - asd \ - $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) -endef - -define PYTHON_SIP_INSTALL_TARGET_CMDS - err \ - err \ -err asd err use \ - - - asd \ - - err \ - asd \ - asd - -www \ - err \ - use \ - use - - -www \ - err \ - use \ - asd \ - use - -www \ - asd \ - err \ - use - - - err \ - dsa \ - asd - - - err \ - asd \ - -err asd err use \ -err asd err use \ - -asd \ -err asd err use \ - -err \ -err asd err use \ - - - - err \ -err asd use \ -err asd use \ - - err \ -err asd \ -err asd \ - - err \ - asd use \ -asd use \ - - err \ - asd \ - asd \ - - -err \ -asd - - -asd \ -err - - - use \ -err asd err use \ -err err use \ - err use \ -err asd \ - - -err use \ -err asd err use \ -err err use \ - err use \ -err asd \ - - - $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) install -C $(@D) -endef - -$(eval $(generic-package)) -$(eval $(host-generic-package)) -- 2.11.4.GIT