diff options
| author | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-12-11 17:28:30 +0100 |
|---|---|---|
| committer | Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> | 2018-12-11 23:00:22 +0100 |
| commit | e4d153b16ac51df1e8294eaf2413e43131620a7f (patch) | |
| tree | 9fe1bb2bfb807f62928431f70be5262acea50e56 /package | |
| parent | ff349069b0fc6a08e4b52e439a8b54d60aa3279e (diff) | |
| download | buildroot-e4d153b16ac51df1e8294eaf2413e43131620a7f.tar.gz buildroot-e4d153b16ac51df1e8294eaf2413e43131620a7f.zip | |
package/wine: host-wine also needs bison and flex
Just like the build of the target wine, the build of host wine also
needs bison and flex, otherwise the build fails with:
checking for flex... no
configure: error: no suitable flex found. Please install the 'flex' package.
(and similarly for bison once host-flex is provided)
This was detected using per-package directories. It used to "work"
because host-wine comes alphabetically after host-flex and host-bison,
which are dependencies of target wine.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Diffstat (limited to 'package')
| -rw-r--r-- | package/wine/wine.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/wine/wine.mk b/package/wine/wine.mk index dc559efd95..78c8e6ab63 100644 --- a/package/wine/wine.mk +++ b/package/wine/wine.mk @@ -10,6 +10,7 @@ WINE_SITE = https://dl.winehq.org/wine/source/3.0 WINE_LICENSE = LGPL-2.1+ WINE_LICENSE_FILES = COPYING.LIB LICENSE WINE_DEPENDENCIES = host-bison host-flex host-wine +HOST_WINE_DEPENDENCIES = host-bison host-flex # Wine needs its own directory structure and tools for cross compiling WINE_CONF_OPTS = \ |

