Make install on lldb was not installing the header files (probably because the file was copied from clang and not updated)

llvm-svn: 191089
This commit is contained in:
Sylvestre Ledru 2013-09-20 13:22:45 +00:00
parent f4bfb4ff0a
commit f56b5b52ff
1 changed files with 7 additions and 7 deletions

View File

@ -4,11 +4,11 @@ DIRS :=
include $(LEVEL)/Makefile.common
install-local::
$(Echo) Installing Clang include files
$(Echo) Installing LLDB include files
$(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir)
$(Verb) if test -d "$(PROJ_SRC_ROOT)/tools/clang/include/clang" ; then \
cd $(PROJ_SRC_ROOT)/tools/clang/include && \
for hdr in `find clang -type f '!' '(' -name '*~' \
$(Verb) if test -d "$(PROJ_SRC_ROOT)/tools/lldb/include/lldb" ; then \
cd $(PROJ_SRC_ROOT)/tools/lldb/include && \
for hdr in `find lldb -type f '!' '(' -name '*~' \
-o -name '.#*' -o -name '*.in' -o -name '*.txt' \
-o -name 'Makefile' -o -name '*.td' -o -name '*.orig' ')' -print \
| grep -v CVS | grep -v .svn | grep -v .dir` ; do \
@ -21,9 +21,9 @@ install-local::
done ; \
fi
ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
$(Verb) if test -d "$(PROJ_OBJ_ROOT)/tools/clang/include/clang" ; then \
cd $(PROJ_OBJ_ROOT)/tools/clang/include && \
for hdr in `find clang -type f '!' '(' -name 'Makefile' ')' -print \
$(Verb) if test -d "$(PROJ_OBJ_ROOT)/tools/lldb/include/lldb" ; then \
cd $(PROJ_OBJ_ROOT)/tools/lldb/include && \
for hdr in `find lldb -type f '!' '(' -name 'Makefile' ')' -print \
| grep -v CVS | grep -v .tmp | grep -v .dir` ; do \
$(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
done ; \