aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-02-13 09:50:42 +0100
committerMax Kellermann <max@duempel.org>2009-02-13 09:50:42 +0100
commitbeaf860a17eeae561c5e197274533b72b8f5398c (patch)
tree6af9a2a5fbd0554e3592333a6b24c512f958a5ed /doc
parentef64449cb65bdb9e0a9c51f5d9f0ef3e220c0525 (diff)
downloadmpd-beaf860a17eeae561c5e197274533b72b8f5398c.tar.gz
mpd-beaf860a17eeae561c5e197274533b72b8f5398c.tar.xz
mpd-beaf860a17eeae561c5e197274533b72b8f5398c.zip
doc: use $(DESTDIR)
Forgot the $(DESTDIR) prefix in the install-data-local target.
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am
index e246c4607..211a23010 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -22,7 +22,7 @@ clean-local:
rm -rf api
install-data-local: api/html/index.html
- $(mkinstalldirs) $(docdir)/api/html
- $(INSTALL_DATA) -c -m 644 api/html/*.html api/html/*.css api/html/*.png api/html/*.gif $(docdir)/api/html
+ $(mkinstalldirs) $(DESTDIR)$(docdir)/api/html
+ $(INSTALL_DATA) -c -m 644 api/html/*.html api/html/*.css api/html/*.png api/html/*.gif $(DESTDIR)$(docdir)/api/html
endif