diff options
author | Paul Varner <fuzzyray@gentoo.org> | 2014-10-24 12:59:59 -0500 |
---|---|---|
committer | Paul Varner <fuzzyray@gentoo.org> | 2014-10-24 12:59:59 -0500 |
commit | 91023ef967c680db9307b5c58762e8872346167e (patch) | |
tree | 00cb44a435a5fe1f8f7725ac37844dc2814136f4 /bin | |
parent | setup.py: Fix installation on slackware systems (diff) | |
download | gentoolkit-91023ef967c680db9307b5c58762e8872346167e.tar.gz gentoolkit-91023ef967c680db9307b5c58762e8872346167e.tar.bz2 gentoolkit-91023ef967c680db9307b5c58762e8872346167e.zip |
Fix gawk warning escape sequence \. treated as plain. Bug 526400
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/revdep-rebuild.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |