Don't filter out lz4 and looking_glass from dependency list

Now that dependencies are packaged as directories and not .ez
files, the fact that both LG and LZ4 are NIFs is no longer
an issue. And having it as regular dependencies simplifies
REPL-driven profiling.

Per discussion with @dumbbell.
This commit is contained in:
Michael Klishin 2021-02-16 17:03:36 +03:00
parent b7f01c102b
commit 88bf1ba754
No known key found for this signature in database
GPG Key ID: E80EDCFA0CDB21EE
1 changed files with 1 additions and 2 deletions

View File

@ -152,8 +152,7 @@ $(error DIST_PLUGINS_LIST ($(DIST_PLUGINS_LIST)) is missing)
endif
$(eval $(foreach path, \
$(filter-out %/looking_glass %/lz4, \
$(sort $(shell cat $(DIST_PLUGINS_LIST))) $(CURDIR)), \
$(sort $(shell cat $(DIST_PLUGINS_LIST))) $(CURDIR), \
$(call ez_target,$(if $(filter $(path),$(CURDIR)),$(PROJECT),$(notdir $(path))),$(path))))
endif
endif