aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfuzzyray <fuzzyray@gentoo.org>2010-03-01 20:09:25 +0000
committerfuzzyray <fuzzyray@gentoo.org>2010-03-01 20:09:25 +0000
commitc0c76c72ec1bac651d42920dd9741da2721ee3c4 (patch)
tree59b8018c58f75350872ee6fe7cc94f9fffdeebd0
parentFix extended regular expression support in revdep-rebuild (diff)
downloadgentoolkit-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-xsrc/revdep-rebuild/revdep-rebuild2
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';