Skip to content
Snippets Groups Projects
Commit 88e018a2 authored by Diego Wilson's avatar Diego Wilson
Browse files

Ensure interfaces.manifest directory exists

The interfaces.manifest build script fails the target directory does not exist. This ensures
the target directory exists before attempting to build it.

Change-Id: Ib187b917bc8e4b70aa2ebe754a6feb1cd747441f
parent ea4dcdf7
No related branches found
No related tags found
No related merge requests found
......@@ -144,6 +144,7 @@ LOCAL_ADDITIONAL_INSTALL_DEPENDENCIES += $(LOCAL_MODULE_PATH)/interfaces.manifes
$(LOCAL_MODULE_PATH)/interfaces.manifest: PRIVATE_LOCAL_MODULE := $(LOCAL_MODULE)
$(LOCAL_MODULE_PATH)/interfaces.manifest: $(GECKO_DIR)/config/buildlist.py
@mkdir -p $(@D)
$(PYTHON) $(GECKO_DIR)/config/buildlist.py $@ "interfaces $(PRIVATE_LOCAL_MODULE).xpt"
endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment