Kaydet (Commit) c3de6c1a authored tarafından Luboš Luňák's avatar Luboš Luňák

create an output dir that's already needed by $(shell ...)

Otherwise there's an error message e.g. during a clean build.

Change-Id: I42efd08e014a4ebe25cfd1a497f622e5ea5c39ad
üst 5535195c
......@@ -35,7 +35,8 @@ compilerplugins: compilerplugins-build
CLANGSRC=$(foreach src,$(wildcard $(CLANGINDIR)/*.cxx), $(notdir $(src)))
# Remember the sources and if they have changed, force plugin relinking.
CLANGSRCCHANGED= \
$(shell echo $(CLANGSRC) | sort > $(CLANGOUTDIR)/sources-new.txt; \
$(shell mkdir -p $(CLANGOUTDIR) ; \
echo $(CLANGSRC) | sort > $(CLANGOUTDIR)/sources-new.txt; \
if diff $(CLANGOUTDIR)/sources.txt $(CLANGOUTDIR)/sources-new.txt >/dev/null 2>/dev/null; then \
echo 0; \
else \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment