Author: neo
Date: Fri Jan 18 10:24:54 2008
New Revision: 1855
URL: http://svn.gnome.org/viewvc/gegl?rev=1855&view=rev
Log:
2008-01-18 Sven Neumann <[EMAIL PROTECTED]>
* docs/Makefile.am
* docs/gallery/Makefile.am: don't use export to pass environment
variables, just pass them directly.
Modified:
trunk/ChangeLog
trunk/docs/Makefile.am
trunk/docs/gallery/Makefile.am
Modified: trunk/docs/Makefile.am
==============================================================================
--- trunk/docs/Makefile.am (original)
+++ trunk/docs/Makefile.am Fri Jan 18 10:24:54 2008
@@ -31,11 +31,11 @@
all-local: $(HTML_FILES) api.html
operations.html: $(top_builddir)/tools/operation_reference
$(top_srcdir)/operations/*/*.c
- export GEGL_PATH=$(top_builddir)/operations;\
+ GEGL_PATH=$(top_builddir)/operations \
$(top_builddir)/tools/operation_reference --ops-html > $@
class-hierarchy.html: $(top_builddir)/tools/introspect
$(top_srcdir)/operations/*/*.c $(top_srcdir)/gegl/*.c
- export GEGL_PATH=$(top_builddir)/operations;\
+ GEGL_PATH=$(top_builddir)/operations \
$(top_builddir)/tools/introspect > $@
gegl.h.html: ../gegl/gegl.h
Modified: trunk/docs/gallery/Makefile.am
==============================================================================
--- trunk/docs/gallery/Makefile.am (original)
+++ trunk/docs/gallery/Makefile.am Fri Jan 18 10:24:54 2008
@@ -45,10 +45,10 @@
%.png:%.xml $(wildcard $(top_builddir)/operations/*/*$(SHREXT))\
$(top_builddir)/gegl/[EMAIL PROTECTED]@.la\
$(top_builddir)/bin/gegl
- @export GEGL_DEBUG_TIME=yes;export
GEGL_PATH=$(top_builddir)/operations;\
+ @GEGL_DEBUG_TIME=yes GEGL_PATH=$(top_builddir)/operations \
$(top_builddir)/bin/gegl $< -o `echo $@ | sed s?$(srcdir)/??` > `echo
$@ | sed s?$(srcdir)/?? | sed -e s/png/txt/`;
if HAVE_GRAPHVIZ
- @export GEGL_PATH=$(top_builddir)/operations;\
+ @GEGL_PATH=$(top_builddir)/operations \
$(top_builddir)/bin/gegl --dot $< | dot -Tpng -o `echo $@ | sed
s?$(srcdir)/?? | sed s/.png/-graph.png/` >/dev/null
endif
_______________________________________________
SVN-commits-list mailing list (read only)
http://mail.gnome.org/mailman/listinfo/svn-commits-list
Want to limit the commits to a few modules? Go to above URL, log in to edit
your options and select the modules ('topics') you want.
Module maintainer? It is possible to set the reply-to to your development
mailing list. Email [EMAIL PROTECTED] if interested.