From bbddbc482979817d734c0eb46942b1b689b70cb9 Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Sat, 3 Mar 2012 17:32:57 -0500 Subject: [PATCH] Fix distcheck where protocol.xsl was missing in the tarball To reproduce, invoke distcheck from an out-of-source tree. Reviewed-by: Peter Hutterer Signed-off-by: Gaetan Nadon --- protocol/.gitignore | 1 + protocol/Makefile.am | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 protocol/.gitignore diff --git a/protocol/.gitignore b/protocol/.gitignore new file mode 100644 index 0000000..a67e944 --- /dev/null +++ b/protocol/.gitignore @@ -0,0 +1 @@ +wayland.html diff --git a/protocol/Makefile.am b/protocol/Makefile.am index 4939557..23554d1 100644 --- a/protocol/Makefile.am +++ b/protocol/Makefile.am @@ -1,7 +1,8 @@ if HAVE_XSLTPROC -dist_doc_DATA = wayland.html wayland-protocol.css wayland.xml +doc_DATA = wayland.html +dist_doc_DATA = wayland-protocol.css wayland.xml protocol.xsl -wayland.html: $(srcdir)/wayland.xml $(srcdir)/protocol.xsl +wayland.html: wayland.xml protocol.xsl $(AM_V_GEN)$(XSLTPROC) $(srcdir)/protocol.xsl $(srcdir)/wayland.xml > $@ CLEANFILES = wayland.html -- 2.7.4