aboutsummaryrefslogtreecommitdiffstats
path: root/docs/CommandGuide
diff options
context:
space:
mode:
authorErick Tryzelaar <idadesub@users.sourceforge.net>2010-03-04 20:56:19 +0000
committerErick Tryzelaar <idadesub@users.sourceforge.net>2010-03-04 20:56:19 +0000
commit48a711c7ffdf70cf1df1aa91562a243c9a2587a6 (patch)
tree521e13aa2e04d3526c405f57b4d3dafcad5090a5 /docs/CommandGuide
parent5ddf938597737c926a53ee8f5032e1b8c5f370df (diff)
downloadexternal_llvm-48a711c7ffdf70cf1df1aa91562a243c9a2587a6.zip
external_llvm-48a711c7ffdf70cf1df1aa91562a243c9a2587a6.tar.gz
external_llvm-48a711c7ffdf70cf1df1aa91562a243c9a2587a6.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/CommandGuide')
-rw-r--r--docs/CommandGuide/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/CommandGuide/Makefile b/docs/CommandGuide/Makefile
index 3b65183..2c2d076 100644
--- a/docs/CommandGuide/Makefile
+++ b/docs/CommandGuide/Makefile
@@ -77,9 +77,9 @@ EXTRA_DIST := $(POD) index.html
clean-local::
$(Verb) $(RM) -f pod2htm*.*~~ $(HTML) $(MAN) $(PS)
-HTML_DIR := $(PROJ_docsdir)/html/CommandGuide
-MAN_DIR := $(PROJ_mandir)/man1
-PS_DIR := $(PROJ_docsdir)/ps
+HTML_DIR := $(DESTDIR)$(PROJ_docsdir)/html/CommandGuide
+MAN_DIR := $(DESTDIR)$(PROJ_mandir)/man1
+PS_DIR := $(DESTDIR)$(PROJ_docsdir)/ps
install-local:: $(HTML) $(INSTALL_MANS) $(PS)
$(Echo) Installing HTML CommandGuide Documentation