Merged from gimp-2-2 branch:

2005-04-09  Sven Neumann  <sven@gimp.org>

        Merged from gimp-2-2 branch:

        * menus/Makefile.am
        * tips/Makefile.am: changed the validate rules to work with srcdir
        != builddir.
This commit is contained in:
Sven Neumann 2005-04-09 21:58:09 +00:00 committed by Sven Neumann
parent 9d439fe018
commit bf83e5148c
3 changed files with 12 additions and 2 deletions

View File

@ -1,3 +1,11 @@
2005-04-09 Sven Neumann <sven@gimp.org>
Merged from gimp-2-2 branch:
* menus/Makefile.am
* tips/Makefile.am: changed the validate rules to work with srcdir
!= builddir.
2005-04-09 Michael Natterer <mitch@gimp.org>
* app/core/gimpbuffer.[ch]: added gimp_buffer_new_from_pixbuf().

View File

@ -53,7 +53,8 @@ endif
validate: $(menudata_DATA)
if HAVE_XMLLINT
@for menu in $(menudata_DATA); do \
@cd $(srcdir); \
for menu in $(menudata_DATA); do \
$(XMLLINT) --noout --valid $$menu || \
( echo "* $$menu INVALID *"; exit 1; ) ; \
done

View File

@ -86,7 +86,8 @@ update-po: $(srcdir)/$(GETTEXT_PACKAGE)-tips.pot
validate: update-po gimp-tips.xml
if HAVE_XMLLINT
@$(XMLLINT) --noout --valid gimp-tips.xml || \
@cd $(srcdir); \
$(XMLLINT) --noout --valid gimp-tips.xml || \
( echo "* gimp-tips.xml INVALID *"; exit 1; )
endif