mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-16 10:50:48 +08:00
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
This commit is contained in:
parent
34d4df0620
commit
85804ec662
@ -1,3 +1,8 @@
|
||||
2000-08-11 Geoffrey Keating <geoffk@cygnus.com>
|
||||
|
||||
* configure.in (CHILL_FOR_TARGET, CXX_FOR_TARGET): Use slightly more
|
||||
portable shell script to convert blanks to commas in $LANGUAGES.
|
||||
|
||||
2000-08-11 Alexandre Oliva <aoliva@redhat.com>
|
||||
|
||||
* config-ml.in (CC, CXX): Don't introduce a leading space.
|
||||
|
16
configure.in
16
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
|
||||
|
Loading…
Reference in New Issue
Block a user