summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorThomas Jahns <jahns@dkrz.de>2015-06-29 09:50:02 +0200
committerMathieu Lirzin <mthl@gnu.org>2017-07-15 17:25:28 +0200
commitfd244f28f5637e13009f75b6962d03401b22149c (patch)
tree4667dea2d2f6c7c74983fd682c4a065a08eda724 /bin
parent87becfb21a35d79f32cb1af083124c8e116b1c2a (diff)
downloadautomake-fd244f28f5637e13009f75b6962d03401b22149c.tar.gz
aclocal: Avoid problematic string interpolation
This fixes bug#20903. Thanks to Eric Bavier for reporting this issue. * bin/aclocal.in (automake_includes): Avoid problematic string interpolation. * NEWS: Update. * THANKS: Thank Eric Bavier. Signed-off-by: Mathieu Lirzin <mthl@gnu.org>
Diffstat (limited to 'bin')
-rw-r--r--bin/aclocal.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/aclocal.in b/bin/aclocal.in
index a4535bc47..7350c8e38 100644
--- a/bin/aclocal.in
+++ b/bin/aclocal.in
@@ -69,7 +69,7 @@ $perl_threads = 0;
# ACLOCAL_PATH environment variable, and reset with the '--system-acdir'
# option.
my @user_includes = ();
-my @automake_includes = ("@datadir@/aclocal-$APIVERSION");
+my @automake_includes = ('@datadir@/aclocal-' . $APIVERSION);
my @system_includes = ('@datadir@/aclocal');
# Whether we should copy M4 file in $user_includes[0].