2003-06-19 Tim Waugh <twaugh@redhat.com>

* Makefile.am, doc/Makefile.am, doc/omf.make, doc/xmldocs.make:
        Fixes so that 'make distcheck' succeeds.


svn: r1764
This commit is contained in:
Tim Waugh 2003-06-19 10:52:16 +00:00
parent 2a911415b6
commit 8f17de4c30
5 changed files with 11 additions and 3 deletions

View File

@ -1,4 +1,6 @@
2003-06-19 Tim Waugh <twaugh@redhat.com> 2003-06-19 Tim Waugh <twaugh@redhat.com>
* Makefile.am, doc/Makefile.am, doc/omf.make, doc/xmldocs.make:
Fixes so that 'make distcheck' succeeds.
* src/WriteXML.py (write_xml_data): Use a stable order for writing * src/WriteXML.py (write_xml_data): Use a stable order for writing
elements in XML. This makes it useful to do revision control (RFE elements in XML. This makes it useful to do revision control (RFE
748165). 748165).

View File

@ -18,3 +18,5 @@ pycheck:
(cd src; make pycheck) (cd src; make pycheck)
trans: trans:
(cd src; make trans) (cd src; make trans)
CLEANFILES = gramps

View File

@ -9,3 +9,5 @@ EXTRA_DIST = $(man_MANS) $(man_IN_FILES) xmldocs.make omf.make
gramps.1: $(top_builddir)/config.status gramps.1.in gramps.1: $(top_builddir)/config.status gramps.1.in
cd $(top_builddir) && CONFIG_FILES=doc/$@ $(SHELL) ./config.status cd $(top_builddir) && CONFIG_FILES=doc/$@ $(SHELL) ./config.status
CLEANFILES=$(man_MANS)

View File

@ -33,14 +33,14 @@ omf: omf_timestamp
omf_timestamp: $(omffile) omf_timestamp: $(omffile)
-for file in $(omffile); do \ -for file in $(omffile); do \
scrollkeeper-preinstall $(docdir)/$(docname).xml $(srcdir)/$$file $(srcdir)/$$file.out; \ scrollkeeper-preinstall $(docdir)/$(docname).xml $(srcdir)/$$file $$file.out; \
done done
touch omf_timestamp touch omf_timestamp
install-data-hook-omf: install-data-hook-omf:
$(mkinstalldirs) $(DESTDIR)$(omf_dest_dir) $(mkinstalldirs) $(DESTDIR)$(omf_dest_dir)
for file in $(omffile); do \ for file in $(omffile); do \
$(INSTALL_DATA) $(srcdir)/$$file.out $(DESTDIR)$(omf_dest_dir)/$$file; \ $(INSTALL_DATA) $$file.out $(DESTDIR)$(omf_dest_dir)/$$file; \
done done
-scrollkeeper-update -p $(scrollkeeper_localstate_dir) -o $(DESTDIR)$(omf_dest_dir) -scrollkeeper-update -p $(scrollkeeper_localstate_dir) -o $(DESTDIR)$(omf_dest_dir)
@ -51,3 +51,5 @@ uninstall-local-omf:
done done
-rmdir $(omf_dest_dir) -rmdir $(omf_dest_dir)
-scrollkeeper-update -p $(scrollkeeper_localstate_dir) -scrollkeeper-update -p $(scrollkeeper_localstate_dir)
CLEANFILES+=*.out

View File

@ -84,7 +84,7 @@ uninstall-local-doc:
-if test "$(figdir)"; then \ -if test "$(figdir)"; then \
for file in $(srcdir)/$(figdir)/*.png; do \ for file in $(srcdir)/$(figdir)/*.png; do \
basefile=`echo $$file | sed -e 's,^.*/,,'`; \ basefile=`echo $$file | sed -e 's,^.*/,,'`; \
rm -f $(docdir)/$(figdir)/$$basefile; \ rm -f $(DESTDIR)/$(docdir)/$(figdir)/$$basefile; \
done; \ done; \
rmdir $(DESTDIR)$(docdir)/$(figdir); \ rmdir $(DESTDIR)$(docdir)/$(figdir); \
fi fi