From: fuzzyray Date: Tue, 19 Feb 2008 00:04:18 +0000 (-0000) Subject: Fix bug with patch for filtering SEARCH_DIRS_MASK paths from SEARCH_DIRS X-Git-Tag: gentoolkit-0.2.4.3~41 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=bcec28967e6c282dde2366187c028a71a8baed62;p=gentoolkit.git Fix bug with patch for filtering SEARCH_DIRS_MASK paths from SEARCH_DIRS svn path=/; revision=472 --- diff --git a/trunk/src/revdep-rebuild/revdep-rebuild b/trunk/src/revdep-rebuild/revdep-rebuild index 7ca77c6..cd17dd1 100755 --- a/trunk/src/revdep-rebuild/revdep-rebuild +++ b/trunk/src/revdep-rebuild/revdep-rebuild @@ -473,7 +473,7 @@ for sdir in ${SEARCH_DIRS} ; do done [[ -n ${skip_me} ]] || filter_SEARCH_DIRS+=" ${sdir}" done -SEARCH_DIRS=$(clean_var "${filter_SEARCH_DIRS}") +SEARCH_DIRS=$(clean_var <<< "${filter_SEARCH_DIRS}") unset sdir mdir skip_me filter_SEARCH_DIRS [[ $SEARCH_DIRS ]] || die 1 "No search defined -- this is a bug."