diff options
author | Paul Varner <fuzzyray@gentoo.org> | 2010-03-01 20:12:57 +0000 |
---|---|---|
committer | Paul Varner <fuzzyray@gentoo.org> | 2010-03-01 20:12:57 +0000 |
commit | 3f7072e8622358d34b89d927e9111892b7860370 (patch) | |
tree | 09d9b62d367b2b525ed1a551e76b3a932584f283 /app-portage | |
parent | Mask media-libs/libmpcdecsv7 for removal. (diff) | |
download | gentoo-2-3f7072e8622358d34b89d927e9111892b7860370.tar.gz gentoo-2-3f7072e8622358d34b89d927e9111892b7860370.tar.bz2 gentoo-2-3f7072e8622358d34b89d927e9111892b7860370.zip |
Fix missing quote in revdep-rebuild.143498.patch
(Portage version: 2.2_rc63/cvs/Linux i686)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/gentoolkit/ChangeLog | 6 | ||||
-rw-r--r-- | app-portage/gentoolkit/files/revdep-rebuild.143498.patch | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/app-portage/gentoolkit/ChangeLog b/app-portage/gentoolkit/ChangeLog index fd6e028cbf12..02fd4528ba7d 100644 --- a/app-portage/gentoolkit/ChangeLog +++ b/app-portage/gentoolkit/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-portage/gentoolkit # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/gentoolkit/ChangeLog,v 1.180 2010/03/01 19:58:04 fuzzyray Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/gentoolkit/ChangeLog,v 1.181 2010/03/01 20:12:56 fuzzyray Exp $ + + 01 Mar 2010; Paul Varner <fuzzyray@gentoo.org> + files/revdep-rebuild.143498.patch: + Fix missing quote in patch *gentoolkit-0.2.4.6-r1 (01 Mar 2010) diff --git a/app-portage/gentoolkit/files/revdep-rebuild.143498.patch b/app-portage/gentoolkit/files/revdep-rebuild.143498.patch index 09558774716b..88b1cff29e1b 100644 --- a/app-portage/gentoolkit/files/revdep-rebuild.143498.patch +++ b/app-portage/gentoolkit/files/revdep-rebuild.143498.patch @@ -16,7 +16,7 @@ - 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" ++ sort -u <<< "$ldd_output" | grep -E "$SONAME" | sed -n "$expr" ) REQUIRED_LIBS=$( expr='s/^[[:space:]]*NEEDED[[:space:]]*\([^[:space:]]*\).*/\1/p'; |