mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 17:33:25 +00:00
configure.ac, icons: check for the "gegl" binary
and use the found executable instead of hardcoding "gegl".
This commit is contained in:
parent
d4aa39a7cd
commit
44d5e7adcd
2 changed files with 7 additions and 1 deletions
|
@ -628,6 +628,11 @@ else
|
|||
fi
|
||||
AC_MSG_RESULT($have_glib_2_43)
|
||||
|
||||
AC_PATH_PROG(GEGL, gegl, no)
|
||||
if test "x$GEGL" = xno; then
|
||||
AC_MSG_ERROR([Could not find gegl in your PATH])
|
||||
fi
|
||||
|
||||
|
||||
# Check for bind_textdomain_codeset, including -lintl if GLib brings it in.
|
||||
gimp_save_LIBS=$LIBS
|
||||
|
|
|
@ -20,7 +20,8 @@ include $(top_srcdir)/icons/Symbolic/icon-list.mk
|
|||
|
||||
%.png:
|
||||
mkdir -p `dirname $@`;
|
||||
gegl -x "<gegl> \
|
||||
$(GEGL) -x \
|
||||
"<gegl> \
|
||||
<node operation='gegl:invert-linear'></node> \
|
||||
<node operation='gegl:load'> \
|
||||
<params> \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue