From f56b5b52ff4f85cee8e8f70bf7fafbddb46f8a2e Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Fri, 20 Sep 2013 13:22:45 +0000 Subject: [PATCH] Make install on lldb was not installing the header files (probably because the file was copied from clang and not updated) llvm-svn: 191089 --- lldb/include/lldb/Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lldb/include/lldb/Makefile b/lldb/include/lldb/Makefile index c64359e854c9..6066298fce4a 100644 --- a/lldb/include/lldb/Makefile +++ b/lldb/include/lldb/Makefile @@ -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 ; \