mirror of https://github.com/GNOME/gimp.git
tests: fix the directory variables in TESTS_ENVIRONMENT
Apparently, $(abs_top_srcdir) and $(abs_top_builddir) aren't set as shell variables any longer. Instead, use @abs_top_srcdir@ and @abs_top_builddir@ so they get substituted at configure time.
This commit is contained in:
parent
49d951d49e
commit
ba3d530c9b
|
@ -7,8 +7,8 @@ SUBDIRS = \
|
|||
# tests through an environment variable so they can set the gimpdir
|
||||
# they want to use
|
||||
TESTS_ENVIRONMENT = \
|
||||
GIMP_TESTING_ABS_TOP_SRCDIR=$(abs_top_srcdir) \
|
||||
GIMP_TESTING_ABS_TOP_BUILDDIR=$(abs_top_builddir)
|
||||
GIMP_TESTING_ABS_TOP_SRCDIR=@abs_top_srcdir@ \
|
||||
GIMP_TESTING_ABS_TOP_BUILDDIR=@abs_top_builddir@
|
||||
|
||||
TESTS = \
|
||||
test-layer-grouping \
|
||||
|
|
Loading…
Reference in New Issue