diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2010-11-21 14:27:57 -0500 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-11-24 11:44:25 -0800 |
commit | f33512b70cf0350a62df2ee2287a870d5fc991a8 (patch) | |
tree | 9b8d3ec21585add788fec586ff1037987c747c46 /doc/xml | |
parent | c25b407f22456f50eef90d9bc5e026c05415c021 (diff) |
xmlrules.in: use $(top_srcdir) rather than ../../../ [...]
Relative paths don't always work in distcheck when srcdir not = builddir
include $(top_srcdir)/doc/xml/xmlrules.in
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'doc/xml')
-rw-r--r-- | doc/xml/Makefile.am | 2 | ||||
-rw-r--r-- | doc/xml/dtrace/Makefile.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/xml/Makefile.am b/doc/xml/Makefile.am index e66f192e2..ab3839be8 100644 --- a/doc/xml/Makefile.am +++ b/doc/xml/Makefile.am @@ -25,7 +25,7 @@ SUBDIRS = dtrace XML_FILES = Xserver-spec.xml -include xmlrules.in +include $(top_srcdir)/doc/xml/xmlrules.in if ENABLE_DEVEL_DOCS noinst_DATA = $(BUILT_DOC_FILES) diff --git a/doc/xml/dtrace/Makefile.am b/doc/xml/dtrace/Makefile.am index a95d37418..10b4f0452 100644 --- a/doc/xml/dtrace/Makefile.am +++ b/doc/xml/dtrace/Makefile.am @@ -23,7 +23,7 @@ XML_FILES = Xserver-DTrace.xml -include ../xmlrules.in +include $(top_srcdir)/doc/xml/xmlrules.in if ENABLE_DOCS if XSERVER_DTRACE |