From 9b32edbfd9d77d30f9aeccff277a5e8619133ae1 Mon Sep 17 00:00:00 2001 From: Pavel Roskin Date: Wed, 9 May 2001 22:43:57 +0000 Subject: [PATCH] * automake.in (define_compiler_variable): Escape $(LIBTOOL) in double quotes. --- ChangeLog | 5 +++++ automake.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0cd1ab68..4c67d823 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-05-09 Pavel Roskin + + * automake.in (define_compiler_variable): Escape $(LIBTOOL) in + double quotes. + 2001-05-09 Tom Tromey * tests/werror.test: Use `rm -f'. diff --git a/automake.in b/automake.in index 2c5375ca..cd6bffe6 100755 --- a/automake.in +++ b/automake.in @@ -6286,7 +6286,7 @@ sub define_compiler_variable ($) my ($var, $value) = ($lang->compiler, $lang->compile); &define_variable ($var, $value); - &define_variable ("LT$var", "$(LIBTOOL) --mode=compile $value") + &define_variable ("LT$var", "\$(LIBTOOL) --mode=compile $value") if $seen_libtool; } -- 2.43.5