diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-02-24 19:14:56 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-02-24 22:45:28 +0100 |
commit | 088a04041e93c3cef484fa6ae3a4f6820f56adb9 (patch) | |
tree | c95c8b99ff0c9ddefe86314eedc53dc550e9d3dc | |
parent | 1ab9bb250c026d4d07e31c2dce3839335b0c7aa9 (diff) |
ipsec-tools: add host-flex dependency
This fixes the following build failure:
checking lex output file root...
configure: error: cannot find output from flex; giving up
Caused by the fact that a host version of flex is missing
in $(HOST_DIR).
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/ipsec-tools/ipsec-tools.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/ipsec-tools/ipsec-tools.mk b/package/ipsec-tools/ipsec-tools.mk index a8b87a67e..38cd57ba4 100644 --- a/package/ipsec-tools/ipsec-tools.mk +++ b/package/ipsec-tools/ipsec-tools.mk @@ -145,7 +145,7 @@ ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_ADMINPORT), y) IPSEC_TOOLS_PROGS+= $(TARGET_DIR)/$(IPSEC_TOOLS_TARGET_BINARY_RACOONCTL) endif -ipsec-tools: openssl flex $(IPSEC_TOOLS_PROGS) +ipsec-tools: openssl flex host-flex $(IPSEC_TOOLS_PROGS) ipsec-tools-source: $(DL_DIR)/$(IPSEC_TOOLS_SOURCE) |