diff options
author | Ray Strode <rstrode@redhat.com> | 2009-07-21 10:38:26 -0400 |
---|---|---|
committer | Ray Strode <rstrode@redhat.com> | 2009-07-21 10:39:46 -0400 |
commit | 671d3100d48af77eb03b79c73d20e7a4611339df (patch) | |
tree | e248a39d822ad0573c3c086ad55d3bacff7f8fc9 /doc | |
parent | bf40cd1b17e0bb55c606301f7d8ed65ae6791e54 (diff) | |
download | ConsoleKit2-671d3100d48af77eb03b79c73d20e7a4611339df.tar.gz |
Reference entities relative to srcdir not cwd
The docs were failing to build when srcdir != builddir
because ConsoleKit.xml was ending up in builddir and
all its entities are in srcdir.
This commit makes ConsoleKit.xml load the entities from
srcdir, which fixes make distcheck.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/dbus/ConsoleKit.xml.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/dbus/ConsoleKit.xml.in b/doc/dbus/ConsoleKit.xml.in index 0f05d02..403e7d0 100644 --- a/doc/dbus/ConsoleKit.xml.in +++ b/doc/dbus/ConsoleKit.xml.in @@ -1,11 +1,11 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [ -<!ENTITY dbus-Manager SYSTEM "org.freedesktop.ConsoleKit.Manager.ref.xml"> -<!ENTITY dbus-Seat SYSTEM "org.freedesktop.ConsoleKit.Seat.ref.xml"> -<!ENTITY dbus-Session SYSTEM "org.freedesktop.ConsoleKit.Session.ref.xml"> -<!ENTITY Intro SYSTEM "ck-introduction.xml"> -<!ENTITY Terms SYSTEM "ck-terms.xml"> -<!ENTITY Design SYSTEM "ck-design.xml"> +<!ENTITY dbus-Manager SYSTEM "@srcdir@/org.freedesktop.ConsoleKit.Manager.ref.xml"> +<!ENTITY dbus-Seat SYSTEM "@srcdir@/org.freedesktop.ConsoleKit.Seat.ref.xml"> +<!ENTITY dbus-Session SYSTEM "@srcdir@/org.freedesktop.ConsoleKit.Session.ref.xml"> +<!ENTITY Intro SYSTEM "@srcdir@/ck-introduction.xml"> +<!ENTITY Terms SYSTEM "@srcdir@/ck-terms.xml"> +<!ENTITY Design SYSTEM "@srcdir@/ck-design.xml"> ]> <book id="index"> |