summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2000-10-10 23:15:40 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2000-10-10 23:15:40 (GMT)
commit820b18e5982fc81789a458677a020464dc649454 (patch)
tree6d5e537f4cbaaf244bb7b0129c4da05b296cbfbc /configure.in
parent900862b2c39fdd2de3b5bfc630fd990b9eed8268 (diff)
downloadhdf5-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.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index dcc0920..d0cb32d 100644
--- a/configure.in
+++ b/configure.in
@@ -1445,7 +1445,7 @@ AC_SUBST_FILE(CONCLUDE) CONCLUDE=config/conclude
dnl The directory search list
AC_SUBST(SEARCH) 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`"
dnl We don't need to say when we're entering directories if we're using
dnl GNU make becuase make does it for us.