From e0b64ba4f92bb0323e5b241b465d17389ceff2d9 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Fri, 25 Aug 2000 22:27:35 +0000 Subject: [PATCH] Make @exec_prefix@ usable in shell scripts. --- ChangeLog | 5 +++++ autoconf/acgeneral.m4 | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 4f1c7b6..4d2881d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-08-26 Bruno Haible + + * autoconf/acgeneral.m4 (AC_OUTPUT): Use braces in exec_prefix default + value, not parens. + 2000-08-18 Bruno Haible * include/cl_univpoly_modint.h: Fix typo. diff --git a/autoconf/acgeneral.m4 b/autoconf/acgeneral.m4 index 71d72a9..78fb594 100644 --- a/autoconf/acgeneral.m4 +++ b/autoconf/acgeneral.m4 @@ -2095,7 +2095,7 @@ trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15 test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. -test "x$exec_prefix" = xNONE && exec_prefix='$(prefix)' +test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' # Any assignment to VPATH causes Sun make to only execute # the first set of double-colon rules, so remove it if not needed.