We need to escape the quotes so eval sees them when expanding the
variable value, not when quoting the variable name itself.
* t/local.mk: Escape quotes to eval.
---
t/local.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/t/local.mk b/t/local.mk
index b22f1ade93d7..31d43e86
Fixes automake bug https://bugs.gnu.org/16714.
The testsuite will try and retain these env vars when recursively
running itself, but doesn't distinguish between vars coming from
the env where the tests were launched. This breaks if the user
happens to `export ACLOCAL=alocal` before `make check`.