rabbitmq-server: security bump to version 3.6.6
[buildroot-gz.git] / package / bellagio / 0005-fix-doc-installation-path.patch
blob06b0743e267dbdcc5465c796390ea004c04bddfb
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>
12 Index: b/Makefile.am
13 ===================================================================
14 --- a/Makefile.am
15 +++ b/Makefile.am
16 @@ -7,7 +7,7 @@
17 pkgconfigdir = $(libdir)/pkgconfig
18 pkgconfig_DATA = libomxil-bellagio.pc
20 -docdir = $(DESTDIR)$(prefix)/share/doc/@PACKAGE@
21 +docdir = $(prefix)/share/doc/@PACKAGE@
22 doc_DATA = README \
23 ChangeLog \
24 TODO