2003-12-01 Tim Waugh <twaugh@redhat.com>

* doc/xmldocs.make: Fix builds for  ==  (oops).


svn: r2415
This commit is contained in:
Tim Waugh 2003-12-01 17:35:39 +00:00
parent 172cd77ac1
commit 9ebe1cca0c
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2003-12-01 Tim Waugh <twaugh@redhat.com>
* doc/xmldocs.make: Fix builds for $top_srcdir == $top_builddir (oops).
2003-12-01 Alex Roitman <shura@alex.neuro.umn.edu>
* doc/gramps-manual/C/keybind.xml: Update.
* doc/gramps-manual/C/usage.xml: Update.

View File

@ -43,7 +43,7 @@ xml_files = $(entities) $(docname).xml
omf_dir=$(top_srcdir)/omf-install
EXTRA_DIST = $(xml_files) $(omffile)
CLEANFILES = omf_timestamp $(xml_files)
CLEANFILES = omf_timestamp
include $(top_srcdir)/doc/omf.make
@ -54,6 +54,14 @@ $(docname).xml: $(entities)
cd $(srcdir); \
cp $(entities) $$ourdir
.PHONY: distclean-hook
distclean: distclean-hook
distclean-hook:
if [ $(top_srcdir) != $(top_builddir) ]; \
then \
rm -f $(entities); \
fi
app-dist-hook:
if test "$(figdir)"; then \
$(mkinstalldirs) $(distdir)/$(figdir); \