mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-03 11:58:07 -07:00
Thanks to jospezial for rebasing the build system patch. Closes: https://bugs.gentoo.org/938111 Signed-off-by: Sam James <sam@gentoo.org>
42 lines
1.1 KiB
Diff
42 lines
1.1 KiB
Diff
# Nils Freydank <holgersson@posteo.de> (2020-01-08)
|
|
Avoid auto installation of files we install later manually.
|
|
Adopted from asturm's patch for mdds-1.4.3.
|
|
|
|
diff --git a/Makefile.am b/Makefile.am
|
|
index 9b69455b..010c7826 100644
|
|
--- a/Makefile.am
|
|
+++ b/Makefile.am
|
|
@@ -7,7 +7,6 @@ AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/test/include \
|
|
$(CXXFLAGS_UNITTESTS)
|
|
|
|
-dist_doc_DATA = AUTHORS README.md
|
|
nodist_pkgconf_DATA = misc/mdds-@API_VERSION@.pc
|
|
|
|
DISTCLEANFILES = \
|
|
@@ -15,8 +14,6 @@ DISTCLEANFILES = \
|
|
|
|
EXTRA_DIST = \
|
|
autogen.sh \
|
|
- CHANGELOG \
|
|
- LICENSE \
|
|
doc/_static/images/fst-example1-initial.svg \
|
|
doc/_static/images/fst-example1-insert1.svg \
|
|
doc/_static/images/fst-example1-insert2.svg \
|
|
@@ -95,14 +92,6 @@ EXTRA_DIST = \
|
|
misc/sorted_string_data.dat \
|
|
misc/sorted_string_map_perf.cpp
|
|
|
|
-install-data-local:
|
|
- $(MKDIR_P) $(DESTDIR)$(docdir)
|
|
- $(INSTALL_DATA) $(top_srcdir)/LICENSE $(DESTDIR)$(docdir)/COPYING
|
|
- $(INSTALL_DATA) $(top_srcdir)/CHANGELOG $(DESTDIR)$(docdir)/NEWS
|
|
-
|
|
-uninstall-local:
|
|
- rm -f $(DESTDIR)$(docdir)/COPYING $(DESTDIR)$(docdir)/NEWS
|
|
-
|
|
if BUILD_DOCS
|
|
|
|
doc-doxygen:
|
|
|