diff options
author | Erick Tryzelaar <idadesub@users.sourceforge.net> | 2010-03-04 20:56:19 +0000 |
---|---|---|
committer | Erick Tryzelaar <idadesub@users.sourceforge.net> | 2010-03-04 20:56:19 +0000 |
commit | d4076cfc834da5255d2f7a15b6f9c7cd80132223 (patch) | |
tree | 521e13aa2e04d3526c405f57b4d3dafcad5090a5 /docs/tutorial/Makefile | |
parent | 3cfe01072c460ea2a8f80b99b9a77699bf6441d6 (diff) | |
download | external_llvm-d4076cfc834da5255d2f7a15b6f9c7cd80132223.zip external_llvm-d4076cfc834da5255d2f7a15b6f9c7cd80132223.tar.gz external_llvm-d4076cfc834da5255d2f7a15b6f9c7cd80132223.tar.bz2 |
Rewrite makefiles to explicitly reference DESTDIR to fix bug 3153.
We need this so can not bake DESTDIR into the O'Caml symlinks.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97743 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial/Makefile')
-rw-r--r-- | docs/tutorial/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/Makefile b/docs/tutorial/Makefile index 6169bb8..9082ad4 100644 --- a/docs/tutorial/Makefile +++ b/docs/tutorial/Makefile @@ -12,7 +12,7 @@ include $(LEVEL)/Makefile.common HTML := $(wildcard $(PROJ_SRC_DIR)/*.html) EXTRA_DIST := $(HTML) index.html -HTML_DIR := $(PROJ_docsdir)/html/tutorial +HTML_DIR := $(DESTDIR)$(PROJ_docsdir)/html/tutorial install-local:: $(HTML) $(Echo) Installing HTML Tutorial Documentation |