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 | 444c0955af5c51f098f3db4a35460890bb29d432 (patch) | |
tree | dc0cd20a5ce3fcfd57eb30228d4147995f40a568 /llvm/docs/tutorial | |
parent | af6ca23294ace6f78435ca818d28bfa6e057605d (diff) | |
download | bcm5719-llvm-444c0955af5c51f098f3db4a35460890bb29d432.tar.gz bcm5719-llvm-444c0955af5c51f098f3db4a35460890bb29d432.zip |
Rewrite makefiles to explicitly reference DESTDIR to fix bug 3153.
We need this so can not bake DESTDIR into the O'Caml symlinks.
llvm-svn: 97743
Diffstat (limited to 'llvm/docs/tutorial')
-rw-r--r-- | llvm/docs/tutorial/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/tutorial/Makefile b/llvm/docs/tutorial/Makefile index 6169bb82416..9082ad4d857 100644 --- a/llvm/docs/tutorial/Makefile +++ b/llvm/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 |