diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2011-05-16 14:43:51 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-05-16 14:43:51 +0200 |
commit | 5c22f20f4b12395a34ce47c1aba608fccaf1fbe0 (patch) | |
tree | e9221e7e51d1dc9d5dcf95960c4cfaa65766ef99 | |
parent | 023481efe2f69ca99870677112483e92c641aba9 (diff) | |
download | buildroot-novena-5c22f20f4b12395a34ce47c1aba608fccaf1fbe0.tar.gz buildroot-novena-5c22f20f4b12395a34ce47c1aba608fccaf1fbe0.zip |
libnl: depend on host-bison
libnl build breaks with bison <2.4 with:
bison -y -d -o route/cls/ematch_syntax.c route/cls/ematch_syntax.y
route/cls/ematch_syntax.y:31.9-16: syntax error, unexpected
identifier, expecting string
So build our own known good version and use instead.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/libnl/libnl.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/libnl/libnl.mk b/package/libnl/libnl.mk index 767e957e5..8d3b9ade7 100644 --- a/package/libnl/libnl.mk +++ b/package/libnl/libnl.mk @@ -8,6 +8,7 @@ LIBNL_VERSION = 3.0 LIBNL_SOURCE = libnl-$(LIBNL_VERSION).tar.gz LIBNL_SITE = http://www.infradead.org/~tgr/libnl/files/ LIBNL_INSTALL_STAGING = YES +LIBNL_DEPENDENCIES = host-bison define LIBNL_UNINSTALL_TARGET_CMDS rm -f $(TARGET_DIR)/usr/lib/libnl.so* |