diff options
author | Maciej W. Rozycki <macro@ds2.pg.gda.pl> | 2003-05-22 04:49:07 +0200 |
---|---|---|
committer | DJ Delorie <dj@gcc.gnu.org> | 2003-05-21 22:49:07 -0400 |
commit | df44510411081d7e0e0b8715ed56e6a0db240e20 (patch) | |
tree | 1b201ab7171d0de34a1c4e08089067e8fe9d822e | |
parent | 2eb98e5d4e09150ce4d5a914324b4f70f973944b (diff) | |
download | gcc-df44510411081d7e0e0b8715ed56e6a0db240e20.zip gcc-df44510411081d7e0e0b8715ed56e6a0db240e20.tar.gz gcc-df44510411081d7e0e0b8715ed56e6a0db240e20.tar.bz2 |
configure.in: Use curly braces in the definition of tooldir.
* configure.in: Use curly braces in the definition of tooldir.
* configure: Regenerate.
From-SVN: r67078
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2003-05-21 Maciej W. Rozycki <macro@ds2.pg.gda.pl> + + * configure.in: Use curly braces in the definition of tooldir. + * configure: Regenerate. + 2003-05-21 DJ Delorie <dj@redhat.com> * Makefile.tpl (configure-target-libiberty): Depend only on gcc, not @@ -1958,7 +1958,7 @@ fi # Some systems (e.g., one of the i386-aix systems the gas testers are # using) don't handle "\$" correctly, so don't use it here. -tooldir='$(exec_prefix)'/${target_alias} +tooldir='${exec_prefix}'/${target_alias} build_tooldir=${tooldir} # Generate a default definition for YACC. This is used if the makefile can't diff --git a/configure.in b/configure.in index 8891c1b..87ab222 100644 --- a/configure.in +++ b/configure.in @@ -1272,7 +1272,7 @@ fi # Some systems (e.g., one of the i386-aix systems the gas testers are # using) don't handle "\$" correctly, so don't use it here. -tooldir='$(exec_prefix)'/${target_alias} +tooldir='${exec_prefix}'/${target_alias} build_tooldir=${tooldir} # Generate a default definition for YACC. This is used if the makefile can't |