From 89409b64eb49be12a6f77e4f766ed4f157498851 Mon Sep 17 00:00:00 2001 From: Brian Gaeke Date: Tue, 10 Feb 2004 01:10:01 +0000 Subject: Should fix pr220 - "make install" doesn't install header files when BUILD_SRC_ROOT != BUILD_OBJ_ROOT git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11253 91177308-0d34-0410-b5e6-96231b3b80d8 --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 85aa6d7eec..7146bfbef5 100644 --- a/Makefile +++ b/Makefile @@ -34,6 +34,9 @@ tools-only: all install-includes: $(MKDIR) $(DESTDIR)$(includedir)/llvm cd include && find * '!' '(' -name '*~' -o -name .cvsignore ')' -print | grep -v CVS | pax -rwdvpe $(DESTDIR)$(includedir)/llvm +ifneq ($(BUILD_SRC_ROOT),$(BUILD_OBJ_ROOT)) + cd $(BUILD_SRC_ROOT)/include && find * '!' '(' -name '*~' -o -name .cvsignore ')' -print | grep -v CVS | pax -rwdvpe $(DESTDIR)$(includedir)/llvm +endif install:: install-includes -- cgit v1.2.3