About this change - I have been seeing the below error while trying to
build the trunk recently:

  $ make ...
  cd . && /bin/bash /tmp/config-missing-bug-in-trunk/trunk/config/missing --run 
aclocal-1.10 -I config
  configure.ac:939: warning: OMPI_CONFIGURE_SETUP is m4_require'd but not 
m4_defun'd
  config/ompi_mca.m4:37: OMPI_MCA is expanded from...
  configure.ac:939: the top level
   cd . && /bin/bash /tmp/config-missing-bug-in-trunk/trunk/config/missing 
--run automake-1.10 --foreign
  configure.ac:939: warning: OMPI_CONFIGURE_SETUP is m4_require'd but not 
m4_defun'd
  ...
  ompi/mca/allocator/Makefile.am:31: WANT_INSTALL_HEADERS does not appear in 
AM_CONDITIONAL
  ... repeats 49 times ...
  make: *** [configure] Error 1

While fixing ACLOCAL_AMFLAGS gets the build to complete successfully,
the real issue is: why is config/missing getting immediately invoked
by "make"?  This wasn't happening before, and it means configure is
getting run twice per build now.

Any ideas what could be causing this?

-Ethan


On Thu, Feb/18/2010 01:11:23PM, emall...@osl.iu.edu wrote:
> Author: emallove
> Date: 2010-02-18 13:11:23 EST (Thu, 18 Feb 2010)
> New Revision: 22663
> URL: https://svn.open-mpi.org/trac/ompi/changeset/22663
> 
> Log:
> In case `config/missing` gets invoked, ensure that all the OMPI-specific m4
> macros are defined.
> 
> Text files modified: 
>    trunk/Makefile.am |     2 +-                                      
>    1 files changed, 1 insertions(+), 1 deletions(-)
> 
> Modified: trunk/Makefile.am
> ==============================================================================
> --- trunk/Makefile.am (original)
> +++ trunk/Makefile.am 2010-02-18 13:11:23 EST (Thu, 18 Feb 2010)
> @@ -25,4 +25,4 @@
>  dist-hook:
>       csh "$(top_srcdir)/config/distscript.csh" "$(top_srcdir)" "$(distdir)" 
> "$(OMPI_VERSION)" "$(OMPI_SVN_R)"
>  
> -ACLOCAL_AMFLAGS = -I config
> +ACLOCAL_AMFLAGS = -I config -I opal/config -I ompi/config -I orte/config
> _______________________________________________
> svn-full mailing list
> svn-f...@open-mpi.org
> http://www.open-mpi.org/mailman/listinfo.cgi/svn-full

Reply via email to