aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorGeoff Keating <geoffk@cygnus.com>2000-08-11 22:02:04 +0000
committerGeoffrey Keating <geoffk@gcc.gnu.org>2000-08-11 22:02:04 +0000
commit85804ec662d8eeeae29d4e3191a4e07bf9aba5c8 (patch)
treeb949d7d0a4c4886a418dd0c64888e16e89c0db5c /configure.in
parent34d4df06209d23ef5c2b1a72591270faa6a0fe5e (diff)
downloadgcc-85804ec662d8eeeae29d4e3191a4e07bf9aba5c8.zip
gcc-85804ec662d8eeeae29d4e3191a4e07bf9aba5c8.tar.gz
gcc-85804ec662d8eeeae29d4e3191a4e07bf9aba5c8.tar.bz2
configure.in (CHILL_FOR_TARGET, [...]): Use slightly more portable shell script to convert blanks to commas in $LANGUAGES.
* configure.in (CHILL_FOR_TARGET, CXX_FOR_TARGET): Use slightly more portable shell script to convert blanks to commas in $LANGUAGES. From-SVN: r35645
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in16
1 files changed, 14 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 69a5f08..e119076 100644
--- a/configure.in
+++ b/configure.in
@@ -1298,7 +1298,13 @@ esac
if test "x${CHILL_FOR_TARGET+set}" = xset; then
:
elif test -d ${topsrcdir}/gcc &&
- echo ",${enable_languages-`echo ${LANGUAGES-CHILL} | tr ' ' ','`}," |
+ # This used to be
+ # echo ",${enable_languages-`echo ${LANGUAGES-CHILL} | tr ' ' ','`},"
+ # but that didn't work on the AIX 4.3.3 /bin/sh.
+ # echo ",${enable_languages-`echo ${LANGUAGES-CHILL} | tr " " ","`},"
+ # doesn't work on the Solaris 5.6 /bin/sh.
+ # This works on both:
+ 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
@@ -1314,7 +1320,13 @@ esac
if test "x${CXX_FOR_TARGET+set}" = xset; then
:
elif test -d ${topsrcdir}/gcc &&
- echo ",${enable_languages-`echo ${LANGUAGES-c++} | tr ' ' ','`}," |
+ # This used to be
+ # echo ",${enable_languages-`echo ${LANGUAGES-c++} | tr ' ' ','`},"
+ # but that didn't work on the AIX 4.3.3 /bin/sh.
+ # echo ",${enable_languages-`echo ${LANGUAGES-c++} | tr " " ","`},"
+ # doesn't work on the Solaris 5.6 /bin/sh.
+ # This works on both:
+ 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