diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-05-25 22:32:22 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-05-25 22:32:22 (GMT) |
commit | 11af4d72c4937534f41dcf1b765e4e2604e3b5de (patch) | |
tree | 4185f22a561a15ca528bdb40806da84d794e7c23 /configure.in | |
parent | 3eff1a1dfbfc0646168974f9431e93585573dc1d (diff) | |
download | hdf5-11af4d72c4937534f41dcf1b765e4e2604e3b5de.zip hdf5-11af4d72c4937534f41dcf1b765e4e2604e3b5de.tar.gz hdf5-11af4d72c4937534f41dcf1b765e4e2604e3b5de.tar.bz2 |
[svn-r10802] Purpose:
Configuration feature
Description:
Formerly, bin/reconfigure needed to invoke Automake with the --foreign
flag or it would fail. It turns out that there is a clever way to
specify this flag inside configure.in so that it doesn't need to
be explicitly invoked.
This should make it easier for people not using machines connected
to AFS (e.g., the netCDF folks) to invoke Automake on HDF5.
Platforms tested:
mir and heping
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 6bc90e9..3ba1a92 100644 --- a/configure.in +++ b/configure.in @@ -30,7 +30,10 @@ AC_CONFIG_SRCDIR([src/H5.c]) AM_CONFIG_HEADER([src/H5config.h]) AC_CONFIG_AUX_DIR([bin]) -AM_INIT_AUTOMAKE + +dnl AM_INIT_AUTOMAKE takes a list of options that should be applied to +dnl every Makefile.am when automake is run. +AM_INIT_AUTOMAKE([foreign]) dnl AM_MAINTAINER_MODE turns off "rebuild rules" that contain dependencies dnl for Makefiles, configure, src/H5config.h, etc. If AM_MAINTAINER_MODE |