aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2004-02-09 17:38:52 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2004-02-09 17:38:52 +0000
commit6c0969696aac8fd475c55b0a9ecda5ceffb7da13 (patch)
tree286c2f417d17fd9f5deca1398a32fe46bdbd610f /Makefile
parent37606f96b089dcbdfcd7c10d3d04c7d7d5bb7e66 (diff)
downloadexternal_llvm-6c0969696aac8fd475c55b0a9ecda5ceffb7da13.zip
external_llvm-6c0969696aac8fd475c55b0a9ecda5ceffb7da13.tar.gz
external_llvm-6c0969696aac8fd475c55b0a9ecda5ceffb7da13.tar.bz2
Fix bug in installation process: MKDIR must respect DESTDIR.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11236 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4cbf53a..85aa6d7 100644
--- a/Makefile
+++ b/Makefile
@@ -32,7 +32,7 @@ tools-only: all
.PHONY: install-includes
install-includes:
- $(MKDIR) $(includedir)/llvm
+ $(MKDIR) $(DESTDIR)$(includedir)/llvm
cd include && find * '!' '(' -name '*~' -o -name .cvsignore ')' -print | grep -v CVS | pax -rwdvpe $(DESTDIR)$(includedir)/llvm
install:: install-includes