From 5d4454b6757a3bef41d9c265f377cbdde27b01b8 Mon Sep 17 00:00:00 2001 From: fuzzyray Date: Mon, 1 Mar 2010 19:21:30 +0000 Subject: [PATCH] Fix extended regular expression support in revdep-rebuild svn path=/trunk/gentoolkit/; revision=747 --- bin/revdep-rebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/revdep-rebuild b/bin/revdep-rebuild index 1eb4393..8b0dec0 100755 --- a/bin/revdep-rebuild +++ b/bin/revdep-rebuild @@ -18,7 +18,7 @@ unset GREP_OPTIONS # Readonly variables: declare -r APP_NAME="${0##*/}" # The name of this application -declare -r VERSION="svn" +declare -r VERSION="genscripts-r230" declare -r OIFS="$IFS" # Save the IFS declare -r ENV_FILE=0_env.rr # Contains environment variables declare -r FILES_FILE=1_files.rr # Contains a list of files to search @@ -757,8 +757,8 @@ main_checks() { # FIXME: I hate duplicating code # Only rebuild for direct dependencies MISSING_LIBS=$( - expr="/$SONAME_SEARCH/s/^[[:space:]]*\([^[:space:]]*\).*$/\1/p" - sort -u <<< "$ldd_output" | sed -n "$expr" + expr="s/^[[:space:]]*\([^[:space:]]*\).*$/\1/p" + sort -u <<< "$ldd_output" | grep -E "$SONAME | sed -n "$expr" ) REQUIRED_LIBS=$( expr='s/^[[:space:]]*NEEDED[[:space:]]*\([^[:space:]]*\).*/\1/p'; -- 2.26.2