1 Makefile.am: fix bogus docdir definition
3 The definition of the docdir variable uses $(DESTDIR). However,
4 automake already prefixes all *dir variables automatically with
5 DESTDIR, which causes the documentation to be installed in
6 $(DESTDIR)/$(DESTDIR)/usr/share/doc/...
8 Fix this by removing the $(DESTDIR) part of the docdir definition.
10 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 ===================================================================
17 pkgconfigdir = $(libdir)/pkgconfig
18 pkgconfig_DATA = libomxil-bellagio.pc
20 -docdir = $(DESTDIR)$(prefix)/share/doc/@PACKAGE@
21 +docdir = $(prefix)/share/doc/@PACKAGE@