1
1

Fixed issue with multi-word C compiler variable, where there

was more than one space between tokens.  Thanks to Bert
Wesarg for reporting the issue.

This commit was SVN r14044.
Этот коммит содержится в:
Brian Barrett 2007-03-16 21:24:12 +00:00
родитель b49cee6898
Коммит 3982be852e
2 изменённых файлов: 7 добавлений и 1 удалений

4
NEWS
Просмотреть файл

@ -49,6 +49,10 @@ Trunk (not on release branches yet)
--> Expected 1.2.x
- Implement MPI_TYPE_CREATE_DARRAY function
--> Expected 1.2.x
- Fixed issue with multi-word C compiler variable, where there
was more than one space between tokens. Thanks to Bert
Wesarg for reporting the issue.
--> Expected 1.2.x
1.2.1
-----

Просмотреть файл

@ -76,7 +76,9 @@ ompi_check_linker_flags_work
cmd="$libtool --dry-run --mode=link --tag=CC $CC bar.lo libfoo.la -o bar $extra_flags"
ompi_check_linker_flags_work yes
output=`echo $output | sed -e "s/^$CC//"`
# eat any extra whitespace in CC, as libtool will do the same
tmpCC=`echo $CC`
output=`echo $output | sed -e "s/^$tmpCC//"`
eval "set $output"
extra_ldflags=
while test -n "[$]1"; do