commit:     91023ef967c680db9307b5c58762e8872346167e
Author:     Paul Varner <fuzzyray <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 24 17:59:59 2014 +0000
Commit:     Paul Varner <fuzzyray <AT> gentoo <DOT> org>
CommitDate: Fri Oct 24 17:59:59 2014 +0000
URL:        
http://sources.gentoo.org/gitweb/?p=proj/gentoolkit.git;a=commit;h=91023ef9

Fix gawk warning escape sequence \. treated as plain. Bug 526400

---
 bin/revdep-rebuild.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/revdep-rebuild.sh b/bin/revdep-rebuild.sh
index 3179a83..01a0454 100755
--- a/bin/revdep-rebuild.sh
+++ b/bin/revdep-rebuild.sh
@@ -842,7 +842,7 @@ main_checks() {
                        done < <(
                                # Regexify LD_LIBRARY_MASK. Exclude it from the 
search.
                                LD_LIBRARY_MASK="${LD_LIBRARY_MASK//$'\n'/|}"
-                               gawk -v ldmask="(${LD_LIBRARY_MASK//./\\\.})" '
+                               gawk -v ldmask="(${LD_LIBRARY_MASK//./\\\\.})" '
                                        /no version information available/ && 
$0 !~ ldmask {
                                                gsub(/[()]/, "", $NF)
                                                if (seen[$NF]++)  next

Reply via email to