diff options
author | 2010-03-01 20:09:25 +0000 | |
---|---|---|
committer | 2010-03-01 20:09:25 +0000 | |
commit | c0c76c72ec1bac651d42920dd9741da2721ee3c4 (patch) | |
tree | 59b8018c58f75350872ee6fe7cc94f9fffdeebd0 | |
parent | Fix extended regular expression support in revdep-rebuild (diff) | |
download | gentoolkit-c0c76c72ec1bac651d42920dd9741da2721ee3c4.tar.gz gentoolkit-c0c76c72ec1bac651d42920dd9741da2721ee3c4.tar.bz2 gentoolkit-c0c76c72ec1bac651d42920dd9741da2721ee3c4.zip |
Fix missing quotation mark
svn path=/branches/gentoolkit-0.2.4/; revision=748
-rwxr-xr-x | src/revdep-rebuild/revdep-rebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/revdep-rebuild/revdep-rebuild b/src/revdep-rebuild/revdep-rebuild index 8b0dec0..e2b551d 100755 --- a/src/revdep-rebuild/revdep-rebuild +++ b/src/revdep-rebuild/revdep-rebuild @@ -758,7 +758,7 @@ main_checks() { # Only rebuild for direct dependencies MISSING_LIBS=$( expr="s/^[[:space:]]*\([^[:space:]]*\).*$/\1/p" - sort -u <<< "$ldd_output" | grep -E "$SONAME | sed -n "$expr" + sort -u <<< "$ldd_output" | grep -E "$SONAME" | sed -n "$expr" ) REQUIRED_LIBS=$( expr='s/^[[:space:]]*NEEDED[[:space:]]*\([^[:space:]]*\).*/\1/p'; |