mirror of https://github.com/GNOME/gimp.git
Makefile.am do not include built texinfo into the distribution. The build
2000-12-21 Sven Neumann <sven@gimp.org> * Makefile.am * pdb/Makefile.am: do not include built texinfo into the distribution. The build process is broken and obsoleted anyway by the SGML docs we have in libgimp. If you want to generate the info, try to use the "pdb_dump.texi" target. This change makes 'make dist' work again (despite the fact that it fails later in plug-ins/perl ...).
This commit is contained in:
parent
a3e3b170c9
commit
b1df5b6d35
|
@ -1,3 +1,12 @@
|
|||
2000-12-21 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* Makefile.am
|
||||
* pdb/Makefile.am: do not include built texinfo into the distribution.
|
||||
The build process is broken and obsoleted anyway by the SGML docs we
|
||||
have in libgimp. If you want to generate the info, try to use the
|
||||
"pdb_dump.texi" target. This change makes 'make dist' work again
|
||||
(despite the fact that it fails later in plug-ins/perl ...).
|
||||
|
||||
2000-11-19 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* libgimp/Makefile.am
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
SUBDIRS = libgimp
|
||||
SUBDIRS = libgimp pdb
|
||||
|
||||
EXTRA_DIST = \
|
||||
README \
|
||||
README.gtkdoc \
|
||||
pdb/pdb_self_doc.el \
|
||||
pdb/pdb_dump \
|
||||
pdb/pdb_dump.texi \
|
||||
pdb/texinfo.tex \
|
||||
gih.txt \
|
||||
gpb.txt \
|
||||
parasites.txt \
|
||||
|
|
|
@ -1,12 +1,14 @@
|
|||
info_TEXINFOS = pdb.texi
|
||||
pdb_TEXINFOS = pdb_dump.texi
|
||||
EXTRA_DIST = \
|
||||
pdb.texi \
|
||||
pdb_self_doc.el \
|
||||
texinfo.tex
|
||||
|
||||
pdb_dump.texi: $(srcdir)/pdb_self_doc.el $(srcdir)/pdb_dump
|
||||
cd $(srcdir) && \
|
||||
@EMACS@ --batch -l pdb_self_doc.el -f make-docs-noargs
|
||||
|
||||
## use `cp' followed by `rm' since `mv' may not be able to move across mount pts
|
||||
$(srcdir)/pdb_dump: $(top_srcdir)/app/*_cmds.c
|
||||
$(srcdir)/pdb_dump: $(top_srcdir)/app/*_cmds.c $(top_builddir)/app/gimp
|
||||
$(top_builddir)/app/gimp --no-interface --batch '(gimp-procedural-db-dump "pdb_dump.tmp")' '(gimp-quit 0)'
|
||||
cp pdb_dump.tmp $(srcdir)/pdb_dump
|
||||
-rm -f pdb_dump.tmp
|
||||
|
|
Loading…
Reference in New Issue