diff options
Diffstat (limited to 'build/f_isoroot/Makefile')
-rw-r--r-- | build/f_isoroot/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/build/f_isoroot/Makefile b/build/f_isoroot/Makefile index 63f894b22..d8ac3c9e3 100644 --- a/build/f_isoroot/Makefile +++ b/build/f_isoroot/Makefile @@ -13,11 +13,15 @@ PLUGINS = f_odlpluginbuild f_qemupluginbuild f_ovs-nsh-dpdk-pluginbuild f_onosfw # If the BUILD_FUEL_PLUGINS environment variable is set, only build the plugins # indicated therein. +# Temporarilu disabling f_repobuild that currently have some issues on +# Fuel 8. ifdef BUILD_FUEL_PLUGINS -SUBDIRS = f_kscfg f_bootstrap f_repobuild $(BUILD_FUEL_PLUGINS) +#SUBDIRS = f_kscfg f_bootstrap f_repobuild $(BUILD_FUEL_PLUGINS) +SUBDIRS = f_kscfg f_bootstrap $(BUILD_FUEL_PLUGINS) $(warning Overriding plugin build selection to $(BUILD_FUEL_PLUGINS)) else -SUBDIRS = f_kscfg f_bootstrap f_repobuild $(PLUGINS) +#SUBDIRS = f_kscfg f_bootstrap f_repobuild $(PLUGINS) +SUBDIRS = f_kscfg f_bootstrap $(PLUGINS) endif SUBCLEAN = $(addsuffix .clean,$(SUBDIRS)) |