diff options
author | Andreas Gruenbacher <agruen@suse.de> | 2010-04-27 23:07:01 +0200 |
---|---|---|
committer | Andreas Gruenbacher <agruen@suse.de> | 2010-04-27 23:07:01 +0200 |
commit | baaa92c25d2ef9ea8256397a104baa2fba2e6ce5 (patch) | |
tree | 0a0894d4661ee498a41868407eaa10dadbcbca6f /tests | |
parent | 444decd3f2a43285b66f1131b5f0b50dff31ed1a (diff) | |
download | patch-baaa92c25d2ef9ea8256397a104baa2fba2e6ce5.tar.gz |
TESTS_ENVIRONMENT portability fix
* tests/Makefile.am (TESTS_ENVIRONMENT): Portability fix.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 76c936a..3df2e74 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -49,5 +49,6 @@ EXTRA_DIST = \ test-lib.sh TESTS_ENVIRONMENT = \ - export abs_top_builddir=$(abs_top_builddir); \ + abs_top_builddir=$(abs_top_builddir); \ + export abs_top_builddir; \ $(TEST_SHELL) |