diff mbox series

package/ply: build needs flex and bison

Message ID 20210223180435.GA30395@arbad
State Accepted
Headers show
Series package/ply: build needs flex and bison | expand

Commit Message

Andreas Klinger Feb. 23, 2021, 6:04 p.m. UTC
Building needs flex and bison installed on the host system.

Fixes:
http://autobuild.buildroot.net/results/7cfe75725f4746367f2870ee9545f31ba56f6ec1

Signed-off-by: Andreas Klinger <ak@it-klinger.de>
---
 package/ply/ply.mk | 1 +
 1 file changed, 1 insertion(+)

Comments

Peter Korsgaard Feb. 25, 2021, 7:30 p.m. UTC | #1
>>>>> "Andreas" == Andreas Klinger <ak@it-klinger.de> writes:

 > Building needs flex and bison installed on the host system.
 > Fixes:
 > http://autobuild.buildroot.net/results/7cfe75725f4746367f2870ee9545f31ba56f6ec1

 > Signed-off-by: Andreas Klinger <ak@it-klinger.de>
 > ---
 >  package/ply/ply.mk | 1 +
 >  1 file changed, 1 insertion(+)

 > diff --git a/package/ply/ply.mk b/package/ply/ply.mk
 > index 0e4141f650..e627a9181f 100644
 > --- a/package/ply/ply.mk
 > +++ b/package/ply/ply.mk
 > @@ -10,5 +10,6 @@ PLY_AUTORECONF = YES
 >  PLY_LICENSE = GPL-2.0
 >  PLY_LICENSE_FILES = COPYING
 >  PLY_INSTALL_STAGING = YES
 > +PLY_DEPENDENCIES += host-flex host-bison

We normally don't use += when it is the only assignment done to the
variable. Committed with that fixed, thanks.
diff mbox series

Patch

diff --git a/package/ply/ply.mk b/package/ply/ply.mk
index 0e4141f650..e627a9181f 100644
--- a/package/ply/ply.mk
+++ b/package/ply/ply.mk
@@ -10,5 +10,6 @@  PLY_AUTORECONF = YES
 PLY_LICENSE = GPL-2.0
 PLY_LICENSE_FILES = COPYING
 PLY_INSTALL_STAGING = YES
+PLY_DEPENDENCIES += host-flex host-bison
 
 $(eval $(autotools-package))