1
1

Fix a the compilation error that is caused by the specification of a CPPFLAGS

environment variable during the configuration process (CPPFLAGS have been
concatenated with an include directive).

This commit was SVN r9213.
Этот коммит содержится в:
Rainer Keller 2006-03-07 08:49:59 +00:00
родитель 5531baaec6
Коммит 67caebbfab

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

@ -1097,11 +1097,11 @@ ompi_show_subtitle "Compiler flags"
# source directories, however. # source directories, however.
# #
if test "$OMPI_TOP_BUILDDIR" != "$OMPI_TOP_SRCDIR"; then if test "$OMPI_TOP_BUILDDIR" != "$OMPI_TOP_SRCDIR"; then
CPPFLAGS='-I$(top_srcdir) -I$(top_builddir) -I$(top_srcdir)/opal/include -I$(top_srcdir)/orte/include -I$(top_srcdir)/ompi/include'"$CPPFLAGS" CPPFLAGS='-I$(top_srcdir) -I$(top_builddir) -I$(top_srcdir)/opal/include -I$(top_srcdir)/orte/include -I$(top_srcdir)/ompi/include'" $CPPFLAGS"
CXXCPPFLAGS='-I$(top_srcdir) -I$(top_builddir) -I$(top_srcdir)/opal/include -I$(top_srcdir)/orte/include -I$(top_srcdir)/ompi/include'"$CXXCPPFLAGS" CXXCPPFLAGS='-I$(top_srcdir) -I$(top_builddir) -I$(top_srcdir)/opal/include -I$(top_srcdir)/orte/include -I$(top_srcdir)/ompi/include'" $CXXCPPFLAGS"
else else
CPPFLAGS='-I$(top_srcdir)'"$CPPFLAGS" CPPFLAGS='-I$(top_srcdir)'" $CPPFLAGS"
CXXCPPFLAGS='-I$(top_srcdir)'"$CXXCPPFLAGS" CXXCPPFLAGS='-I$(top_srcdir)'" $CXXCPPFLAGS"
fi fi
# #