From: Pavel Roskin Date: Wed, 9 May 2001 22:43:58 +0000 (+0000) Subject: * automake.in (define_compiler_variable): Escape $(LIBTOOL) in X-Git-Tag: Release-1-4f~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4877109be5c11898064b73447631e9341c88e5d4;p=thirdparty%2Fautomake.git * automake.in (define_compiler_variable): Escape $(LIBTOOL) in double quotes. --- diff --git a/ChangeLog b/ChangeLog index 0cd1ab68c..4c67d8235 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 2c5375caf..cd6bffe60 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; }