diff options
author | Vicente Olivert Riera <Vincent.Riera@imgtec.com> | 2015-09-30 08:46:36 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-09-30 10:15:40 +0200 |
commit | fa9d0818f41dbf6d7ff485a25a370cd4f5ab47b2 (patch) | |
tree | 19aee810503e7de8d43da36b22d02fe9ba491d9b | |
parent | 712025237092a1cc49066207e7bc82d3cdebf3cc (diff) | |
download | buildroot-fa9d0818f41dbf6d7ff485a25a370cd4f5ab47b2.tar.gz buildroot-fa9d0818f41dbf6d7ff485a25a370cd4f5ab47b2.zip |
setools: depends on host-flex
setools needs host-flex in order to generate some source files during
build time, otherwise it will fail with an error like this one:
error: policy_scan.c: No such file or directory
Issue reported here as a race condition problem, but it turned out that
it the actual problem was the lack of host-flex:
https://github.com/TresysTechnology/setools3/issues/5#issuecomment-144048612
Fixes:
http://autobuild.buildroot.net/results/dad/dad9d79c10722b203536540141a6defc79937e4e/
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/setools/setools.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/setools/setools.mk b/package/setools/setools.mk index a2bfd420e5..612ab8978f 100644 --- a/package/setools/setools.mk +++ b/package/setools/setools.mk @@ -7,7 +7,7 @@ SETOOLS_VERSION = 3.3.8 SETOOLS_SOURCE = setools-$(SETOOLS_VERSION).tar.bz2 SETOOLS_SITE = https://raw.githubusercontent.com/wiki/TresysTechnology/setools3/files/dists/setools-$(SETOOLS_VERSION)/ -SETOOLS_DEPENDENCIES = libselinux libsepol sqlite libxml2 bzip2 host-bison +SETOOLS_DEPENDENCIES = libselinux libsepol sqlite libxml2 bzip2 host-bison host-flex SETOOLS_INSTALL_STAGING = YES SETOOLS_LICENSE = GPLv2+ LGPLv2.1+ SETOOLS_LICENSE_FILES = COPYING COPYING.GPL COPYING.LGPL |