From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Petazzoni Date: Fri, 28 Dec 2018 14:55:02 +0100 Subject: [Buildroot] [PATCH] package/acpica: add missing dependencies for host variant Message-ID: <20181228135502.24798-1-thomas.petazzoni@bootlin.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net Just like the target acpica package needs host-flex and host-bison, the host variant also needs the same dependencies. This allows to fix the build of "make host-acpica", which was detected thanks to per-package directory support. Signed-off-by: Thomas Petazzoni --- package/acpica/acpica.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/acpica/acpica.mk b/package/acpica/acpica.mk index 57cc37f85e..c540061928 100644 --- a/package/acpica/acpica.mk +++ b/package/acpica/acpica.mk @@ -10,6 +10,7 @@ ACPICA_SITE = https://acpica.org/sites/acpica/files ACPICA_LICENSE = BSD-3-Clause or GPL-2.0 ACPICA_LICENSE_FILES = source/include/acpi.h ACPICA_DEPENDENCIES = host-bison host-flex +HOST_ACPICA_DEPENDENCIES = host-bison host-flex define ACPICA_BUILD_CMDS $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \ -- 2.20.1