diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2000-08-03 02:22:11 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2000-08-03 02:22:11 +0000 |
commit | 6a2ef321050062b76e8e11b4cade15c1feba54fa (patch) | |
tree | 9dd7abff6d0f5e3f67d724b3b1788675cbdf2dfc /configure.in | |
parent | 9ccb71b88fbd882337ec0f1488c3813b3302f991 (diff) | |
download | newlib-6a2ef321050062b76e8e11b4cade15c1feba54fa.zip newlib-6a2ef321050062b76e8e11b4cade15c1feba54fa.tar.gz newlib-6a2ef321050062b76e8e11b4cade15c1feba54fa.tar.bz2 |
* configure.in (CHILL_FOR_TARGET, CXX_FOR_TARGET): Convert blanks to
commas in $LANGUAGES.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 98ccdcc..e270f3a 100644 --- a/configure.in +++ b/configure.in @@ -1286,8 +1286,8 @@ esac if test "x${CHILL_FOR_TARGET+set}" = xset; then : elif test -d ${topsrcdir}/gcc && - echo ",${enable_languages-${LANGUAGES-CHILL}}," | - grep ,CHILL, > /dev/null ; then + echo ",${enable_languages-`echo ${LANGUAGES-CHILL} | tr ' ' ','`}," | + grep ',CHILL,' > /dev/null ; then CHILL_FOR_TARGET='$$r/gcc/xgcc -L$$r/gcc/ch/runtime/' elif test "$host" = "$target"; then CHILL_FOR_TARGET='$(CC)' @@ -1302,7 +1302,7 @@ esac if test "x${CXX_FOR_TARGET+set}" = xset; then : elif test -d ${topsrcdir}/gcc && - echo ",${enable_languages-${LANGUAGES-c++}}," | + echo ",${enable_languages-`echo ${LANGUAGES-c++} | tr ' ' ','`}," | grep ',c[+][+],' > /dev/null ; then CXX_FOR_TARGET='$$r/gcc/g++ -nostdinc++ '$libstdcxx_flags elif test "$host" = "$target"; then |