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.
Этот коммит содержится в:
родитель
b49cee6898
Коммит
3982be852e
4
NEWS
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
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user