diff options
author | Havoc Pennington <hp@redhat.com> | 2003-04-07 02:01:53 +0000 |
---|---|---|
committer | Havoc Pennington <hp@redhat.com> | 2003-04-07 02:01:53 +0000 |
commit | a7f69a41d5b82eb00da20b661181b490039bb70f (patch) | |
tree | 0f00e5c4b57ec22fba047c2a654604e4c86a4693 /doc/Makefile.am | |
parent | 98572905e60cac7ea971aa0830e2a629bfff208d (diff) |
2003-04-06 Havoc Pennington <hp@pobox.com>
* qt/Makefile.am (dbusinclude_HEADERS): install dbus-qt.h,
from Colin Walters
* configure.in: fixes to Qt detection from Colin Walters
* doc/Makefile.am: Only remove generated docbook dirs if they
exist, from Colin Walters
* dbus/dbus-bus.c: change how we set well-known connections to
NULL, so that it works if a single connection is stored in
two well-known array slots.
* test/Makefile.am: remove a lot of stuff that isn't immediately
useful, it's in CVS history if we want it.
* test/test-service.c: use dbus-mainloop instead of that
watch.[hc] crack
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r-- | doc/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 2761155d..5a3a0a28 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -14,12 +14,12 @@ endif dbus-specification.html: dbus-specification.sgml db2html -o . --nochunks dbus-specification.sgml && \ rm -r dbus-specification/stylesheet-images && \ - rmdir dbus-specification + (if test -d dbus-specification ; then rmdir dbus-specification ; fi) dbus-test-plan.html: dbus-test-plan.sgml - db2html -o . --nochunks dbus-test-plan.sgml && \ + db2html -o . --nochunks dbus-test-plan.sgml && \ rm -r dbus-test-plan/stylesheet-images && \ - rmdir dbus-test-plan + (if test -d dbus-test-plan ; then rmdir dbus-test-plan ; fi) maintainer-clean-local: rm -f dbus-test-plan.html |