diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2003-01-13 17:23:25 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2003-01-13 17:23:25 +0000 |
commit | eb4b5f93f9e7e60c72835c9564a69c5740012edc (patch) | |
tree | c33797f6b398ced479850eaf8c14cb2e715b652b /gcc/aclocal.m4 | |
parent | f7835768217b84453a624ad0ba733ddd90b00c2d (diff) | |
download | gcc-eb4b5f93f9e7e60c72835c9564a69c5740012edc.zip gcc-eb4b5f93f9e7e60c72835c9564a69c5740012edc.tar.gz gcc-eb4b5f93f9e7e60c72835c9564a69c5740012edc.tar.bz2 |
aclocal.m4 (gcc_AC_PROG_GNAT): Don't try to prepend ${ac_tool_prefix} to ADAC or CC.
* aclocal.m4 (gcc_AC_PROG_GNAT): Don't try to prepend
${ac_tool_prefix} to ADAC or CC. Protect them from word
splitting.
* configure: Rebuilt.
From-SVN: r61254
Diffstat (limited to 'gcc/aclocal.m4')
-rw-r--r-- | gcc/aclocal.m4 | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/aclocal.m4 b/gcc/aclocal.m4 index 03dd541..6e5fa4a 100644 --- a/gcc/aclocal.m4 +++ b/gcc/aclocal.m4 @@ -308,10 +308,7 @@ procedure conftest is begin null; end conftest; EOF gcc_cv_prog_adac=no # Have to do ac_tool_prefix and user overrides by hand. -user_adac=$ADAC -user_cc=$CC -for cand in ${ac_tool_prefix}$user_adac $user_adac \ - ${ac_tool_prefix}$user_cc $user_cc \ +for cand in ${ADAC+"$ADAC"} ${CC+"$CC"} \ ${ac_tool_prefix}gcc gcc \ ${ac_tool_prefix}cc cc \ ${ac_tool_prefix}gnatgcc gnatgcc \ |