Gentoo Archives: gentoo-commits

From: "Paul Varner (fuzzyray)" <fuzzyray@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-portage/gentoolkit/files: revdep-rebuild.143498.patch
Date: Mon, 01 Mar 2010 20:13:04
Message-Id: E1NmBz8-0007LN-3B@stork.gentoo.org
1 fuzzyray 10/03/01 20:12:58
2
3 Modified: revdep-rebuild.143498.patch
4 Log:
5 Fix missing quote in revdep-rebuild.143498.patch
6 (Portage version: 2.2_rc63/cvs/Linux i686)
7
8 Revision Changes Path
9 1.2 app-portage/gentoolkit/files/revdep-rebuild.143498.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/gentoolkit/files/revdep-rebuild.143498.patch?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/gentoolkit/files/revdep-rebuild.143498.patch?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/gentoolkit/files/revdep-rebuild.143498.patch?r1=1.1&r2=1.2
14
15 Index: revdep-rebuild.143498.patch
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-portage/gentoolkit/files/revdep-rebuild.143498.patch,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- revdep-rebuild.143498.patch 1 Mar 2010 19:58:06 -0000 1.1
22 +++ revdep-rebuild.143498.patch 1 Mar 2010 20:12:57 -0000 1.2
23 @@ -16,7 +16,7 @@
24 - expr="/$SONAME_SEARCH/s/^[[:space:]]*\([^[:space:]]*\).*$/\1/p"
25 - sort -u <<< "$ldd_output" | sed -n "$expr"
26 + expr="s/^[[:space:]]*\([^[:space:]]*\).*$/\1/p"
27 -+ sort -u <<< "$ldd_output" | grep -E "$SONAME | sed -n "$expr"
28 ++ sort -u <<< "$ldd_output" | grep -E "$SONAME" | sed -n "$expr"
29 )
30 REQUIRED_LIBS=$(
31 expr='s/^[[:space:]]*NEEDED[[:space:]]*\([^[:space:]]*\).*/\1/p';