From 59a0d7d806c4363d062f53d38101b3a1cbe0e5d9 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Wed, 11 Oct 2000 12:25:21 -0500 Subject: [svn-r2667] Purpose: Bug Fix Description: Broke on Arabica trying to export the SEARCH macro. Solution: Assigned to the SEARCH macro and then exported it. Platforms tested: Arabica. --- configure | 3 ++- configure.in | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 60b38d6..5f7d0d1 100755 --- a/configure +++ b/configure @@ -9365,7 +9365,8 @@ fi SEARCH='$(srcdir) $(top_builddir)/src $(top_srcdir)/src' cmd='echo $SEARCH |sed "s/ /'$SEARCH_SEP'/g"' -export SEARCH="$SEARCH_RULE`eval $cmd`" +SEARCH="$SEARCH_RULE`eval $cmd`" +export SEARCH if test "X$GMAKE" = "Xyes"; then SETX=":" diff --git a/configure.in b/configure.in index d0cb32d..d548313 100644 --- a/configure.in +++ b/configure.in @@ -1445,7 +1445,8 @@ 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"' -export SEARCH="$SEARCH_RULE`eval $cmd`" +SEARCH="$SEARCH_RULE`eval $cmd`" +export SEARCH 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. -- cgit v0.12