diff options
author | Andy Wingo <wingo@pobox.com> | 2024-06-20 15:54:53 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2024-06-20 15:54:53 +0200 |
commit | 2a4c095f79e90a7e0a56cfc7ca247d425d3c2a42 (patch) | |
tree | 53927299601a9557b02d5bbbd093c59535bc291d | |
parent | df04f5357a0c7146d7ec1c4fcd8c11a42feb5e01 (diff) | |
download | guile-2a4c095f79e90a7e0a56cfc7ca247d425d3c2a42.tar.gz |
Avoid stompling user TESTS_ENVIRONMENT var
* test-suite/standalone/Makefile.am (top_srcdir): Use
AM_TESTS_ENVIRONMENT.
-rw-r--r-- | test-suite/standalone/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test-suite/standalone/Makefile.am b/test-suite/standalone/Makefile.am index ece0d7989..5c3b5569e 100644 --- a/test-suite/standalone/Makefile.am +++ b/test-suite/standalone/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to produce Makefile.in. ## -## Copyright 2003-2014, 2020-2023 Free Software Foundation, Inc. +## Copyright 2003-2014, 2020-2024 Free Software Foundation, Inc. ## ## This file is part of GUILE. ## @@ -29,7 +29,7 @@ check_SCRIPTS = BUILT_SOURCES = EXTRA_DIST = -TESTS_ENVIRONMENT = \ +AM_TESTS_ENVIRONMENT = \ top_srcdir="$(top_srcdir)" \ srcdir="$(srcdir)" \ builddir="$(builddir)" \ |