
to -I the opal/config directory so that autoregen can find our .m4 files. This commit was SVN r25564. The following SVN revision numbers were found above: r25511 --> open-mpi/ompi@5751c45916
27 строки
773 B
Bash
Исполняемый файл
27 строки
773 B
Bash
Исполняемый файл
#!/bin/sh
|
|
###################################
|
|
# Open MPI change: add -I for our m4 directory so that we can
|
|
# find OPAL_CHECK_VISIBILITY
|
|
###################################
|
|
OMPI="-I ../../../../../opal/config"
|
|
if [ -x "`which autoreconf 2>/dev/null`" ] ; then
|
|
###################################
|
|
# Open MPI change: add -I for our m4 directory
|
|
###################################
|
|
exec autoreconf -ivf $OMPI
|
|
fi
|
|
|
|
LIBTOOLIZE=libtoolize
|
|
SYSNAME=`uname`
|
|
if [ "x$SYSNAME" = "xDarwin" ] ; then
|
|
LIBTOOLIZE=glibtoolize
|
|
fi
|
|
###################################
|
|
# Open MPI change: add -I for our m4 directory
|
|
###################################
|
|
aclocal -I m4 $OMPI && \
|
|
autoheader && \
|
|
$LIBTOOLIZE && \
|
|
autoconf $OMPI && \
|
|
automake --add-missing --force-missing --copy
|