diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-10-10 23:15:40 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-10-10 23:15:40 (GMT) |
commit | 820b18e5982fc81789a458677a020464dc649454 (patch) | |
tree | 6d5e537f4cbaaf244bb7b0129c4da05b296cbfbc /configure | |
parent | 900862b2c39fdd2de3b5bfc630fd990b9eed8268 (diff) | |
download | hdf5-820b18e5982fc81789a458677a020464dc649454.zip hdf5-820b18e5982fc81789a458677a020464dc649454.tar.gz hdf5-820b18e5982fc81789a458677a020464dc649454.tar.bz2 |
[svn-r2659] Purpose:
Bug Fix
Description:
When running configure on subdirectories (like fortran/), looking
up how make implements SEARCHes failed.
Solution:
Exporting the SEARCH macro so that subdirectories don't have to
look for it.
Platforms tested:
Modi4.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9365,7 +9365,7 @@ fi SEARCH='$(srcdir) $(top_builddir)/src $(top_srcdir)/src' cmd='echo $SEARCH |sed "s/ /'$SEARCH_SEP'/g"' -SEARCH="$SEARCH_RULE`eval $cmd`" +export SEARCH="$SEARCH_RULE`eval $cmd`" if test "X$GMAKE" = "Xyes"; then SETX=":" |