diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2000-11-20 14:48:04 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2000-11-20 14:48:04 (GMT) |
commit | 687d3d3bc345d65cc141369059e5029e46543b7b (patch) | |
tree | 498f8872781ef75e15822c3d8bd4a3a747a921df /config | |
parent | ae1c7b47e35dc5244f3899c7a20ae8e723ad781a (diff) | |
download | hdf5-687d3d3bc345d65cc141369059e5029e46543b7b.zip hdf5-687d3d3bc345d65cc141369059e5029e46543b7b.tar.gz hdf5-687d3d3bc345d65cc141369059e5029e46543b7b.tar.bz2 |
[svn-r2980] Purpose:
Bug fix
Description:
make reconfigure complained syntax error.
Solution:
The for loop previous added contained a typo. Replaced $$test
with $$sub.
Platforms tested:
modi4-64.
Diffstat (limited to 'config')
-rw-r--r-- | config/commence.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/commence.in b/config/commence.in index fa1b649..f90d0eb 100644 --- a/config/commence.in +++ b/config/commence.in @@ -147,8 +147,8 @@ $(top_builddir)/config.status: $(top_srcdir)/configure $(STAMP1) reconfigure: $(MAKEFILE_PARTS) $(STAMP2) -cd $(top_builddir); CONFIG_HEADERS= ./config.status @for sub in @subdirs@ dummy; do \ - if test $$test != dummy; then \ - -cd $$test; $(MAKE) reconfigure; \ + if test $$sub != dummy; then \ + -cd $$sub; $(MAKE) reconfigure; \ fi; \ done; |