[Lldb-commits] [lldb] r191089 - Make install on lldb was not installing the header files (probably because the file was copied from clang and not updated)

Sylvestre Ledru sylvestre at debian.org
Fri Sep 20 06:22:46 PDT 2013


Author: sylvestre
Date: Fri Sep 20 08:22:45 2013
New Revision: 191089

URL: http://llvm.org/viewvc/llvm-project?rev=191089&view=rev
Log:
Make install on lldb was not installing the header files (probably because the file was copied from clang and not updated)

Modified:
    lldb/trunk/include/lldb/Makefile

Modified: lldb/trunk/include/lldb/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Makefile?rev=191089&r1=191088&r2=191089&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Makefile (original)
+++ lldb/trunk/include/lldb/Makefile Fri Sep 20 08:22:45 2013
@@ -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 ; \





More information about the lldb-commits mailing list