diff options
author | Robb Matzke <matzke@llnl.gov> | 1999-11-03 18:05:58 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1999-11-03 18:05:58 (GMT) |
commit | 4051fa31870cb61a757d5d3930f41b3bd2475657 (patch) | |
tree | 0c57a0f614519e28f11c45a07d45fa697a63cf45 /configure.in | |
parent | c13e76ffeec1a574697d44c40953a36bdb72eddf (diff) | |
download | hdf5-4051fa31870cb61a757d5d3930f41b3bd2475657.zip hdf5-4051fa31870cb61a757d5d3930f41b3bd2475657.tar.gz hdf5-4051fa31870cb61a757d5d3930f41b3bd2475657.tar.bz2 |
[svn-r1814] * 1999-11-03
** config/depend1.in
We don't regenerate the Dependencies files if we're compiling in the
source tree because `gcc -MM' doesn't output enough information to
make the result usable when compiling outside the source tree.
** src/H5config.h.in
Regenerated to include HAVE_LIBMPI and HAVE_LIBMPIO because of recent
changes to configure.in
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 1c1489e..3a48062 100644 --- a/configure.in +++ b/configure.in @@ -177,7 +177,7 @@ VPATH=$srcdir/config $srcdir/src $srcdir/bin cp $< H5.o foo: H5.o - rm H5.o + /bin/rm -f H5.o @echo works EOF if (${MAKE-make} -f maketest foo) >/dev/null 2>&1; then @@ -195,7 +195,7 @@ VPATH=$srcdir/config:$srcdir/src:$srcdir/bin cp $< H5.o foo: H5.o - rm H5.o + /bin/rm -f H5.o @echo works EOF if (${MAKE-make} -f maketest foo) >/dev/null 2>&1; then @@ -212,7 +212,7 @@ EOF cp $< H5.o foo: H5.o - rm H5.o + /bin/rm -f H5.o @echo works EOF if (MAKE= ${MAKE-make} -f maketest foo) >/dev/null 2>&1; then |