diff options
author | Max Kellermann <max@duempel.org> | 2009-02-13 09:50:42 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-13 09:50:42 +0100 |
commit | beaf860a17eeae561c5e197274533b72b8f5398c (patch) | |
tree | 6af9a2a5fbd0554e3592333a6b24c512f958a5ed /doc/Makefile.am | |
parent | ef64449cb65bdb9e0a9c51f5d9f0ef3e220c0525 (diff) | |
download | mpd-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 '')
-rw-r--r-- | doc/Makefile.am | 4 |
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 |