diff options
author | Michael Pratt <mcpratt@pm.me> | 2023-03-25 01:01:36 -0400 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2023-05-04 06:07:28 +0200 |
commit | e764a909e3d468a5597373cac087ecc008540e2d (patch) | |
tree | 7b4736fe5de076334d3351bbc215d32c0c7d930d /tools/flex/Makefile | |
parent | 89a8269c109b56364bc5c7a63afb8e2888ba9143 (diff) | |
download | upstream-e764a909e3d468a5597373cac087ecc008540e2d.tar.gz upstream-e764a909e3d468a5597373cac087ecc008540e2d.tar.bz2 upstream-e764a909e3d468a5597373cac087ecc008540e2d.zip |
tools/flex: override SUBDIRS variable with Makefile
Instead of editing the SUBDIRS variable with a patch,
it can be overriden at the end of the command line when invoking Make.
Skip the build for po files as well, which is causing a conflict
depending on the version of gettext detected, and macros present.
Signed-off-by: Michael Pratt <mcpratt@pm.me>
Diffstat (limited to 'tools/flex/Makefile')
-rw-r--r-- | tools/flex/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/flex/Makefile b/tools/flex/Makefile index da037ae72d..86ba5a4415 100644 --- a/tools/flex/Makefile +++ b/tools/flex/Makefile @@ -21,13 +21,17 @@ include $(INCLUDE_DIR)/host-build.mk HOST_CONFIGURE_ARGS += --disable-shared +define Host/Compile + $(call Host/Compile/Default,SUBDIRS='src tools') +endef + define Host/Install - $(call Host/Install/Default) + $(call Host/Compile/Default,install SUBDIRS='src tools') $(LN) flex $(STAGING_DIR_HOST)/bin/lex endef define Host/Uninstall - -$(call Host/Compile/Default,uninstall) + -$(call Host/Compile/Default,uninstall SUBDIRS='src tools') endef define Host/Clean |