Skip to content
Snippets Groups Projects
Commit 0e232490 authored by Ralph Giles's avatar Ralph Giles
Browse files

Only install opus_*.3 manpages. Fixes 'make distcheck'.

We were installing every readable file in man/man3, but
only unstalling files matching opus_*.3. Some doxygen
versions construct manpage versions of the marked up
header files and directory index, which got left on the
system after 'make uninstall'.

I don't think the 'uninstall' target is widely used, it's
often broken and can easily break other software. However,
we rely on 'make distcheck' which does verify this issue.

Instead, only install the opus_*.3 manpages, which are the
core api documentation.
parent 8d2e9ade
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ install-data-local:
done
$(INSTALL) -d $(DESTDIR)$(mandir)/man3
cd man && find man3 -type f \
cd man && find man3 -type f -name opus_*.3 \
-exec $(INSTALL_DATA) \{} $(DESTDIR)$(mandir)/man3 \;
clean-local:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment