forked from OSchip/llvm-project
Avoid creating .dir files in the installation area.
llvm-svn: 62744
This commit is contained in:
parent
08bebedbab
commit
f7444aa8df
|
@ -32,7 +32,10 @@ PROJ_headers := $(DESTDIR)$(PROJ_prefix)/Headers
|
|||
|
||||
INSTHEADERS := $(addprefix $(PROJ_headers)/, $(HEADERS))
|
||||
|
||||
$(INSTHEADERS): $(PROJ_headers)/%.h: $(HeaderDir)/%.h $(PROJ_headers)/.dir
|
||||
$(PROJ_headers):
|
||||
$(Verb) $(MKDIR) $@
|
||||
|
||||
$(INSTHEADERS): $(PROJ_headers)/%.h: $(HeaderDir)/%.h | $(PROJ_headers)
|
||||
$(Verb) $(DataInstall) $< $(PROJ_headers)
|
||||
|
||||
install-local:: $(INSTHEADERS)
|
||||
|
|
Loading…
Reference in New Issue