The following commit has been merged in the master branch:
commit e48341562cd7b6220e817c936bf018f57efd3d2b
Author: Raphael Geissert <[email protected]>
Date:   Thu May 27 14:11:35 2010 -0500

    checkbashisms: avoid a false positive output redirection match
    
    Autoconf-generated configure files store a fd number in an argument
    variable ($0..9) matching the check's pattern. Since this kind of uses
    is rare enough outside autoconf, it is safe to skip it in such cases.
    
    Signed-off-by: James Vega <[email protected]>

diff --git a/scripts/checkbashisms.pl b/scripts/checkbashisms.pl
index f3f4ff4..dc79045 100755
--- a/scripts/checkbashisms.pl
+++ b/scripts/checkbashisms.pl
@@ -507,7 +507,7 @@ sub init_hashes {
        qr'(?<![\$\(])\(\(.*\)\)' =>     q<'((' should be '$(('>,
        qr'(?:^|\s+)(\[|test)\s+-a' =>            q<test with unary -a (should 
be -e)>,
        qr'\&>' =>                     q<should be \>word 2\>&1>,
-       qr'(<\&|>\&)\s*((-|\d+)[^\s;|)}`&\\\\]|[^-\d\s]+)' =>
+       qr'(<\&|>\&)\s*((-|\d+)[^\s;|)}`&\\\\]|[^-\d\s]+(?<!\$)(?!\d))' =>
                                       q<should be \>word 2\>&1>,
        $LEADIN . qr'kill\s+-[^sl]\w*' => q<kill -[0-9] or -[A-Z]>,
        $LEADIN . qr'trap\s+["\']?.*["\']?\s+.*[1-9]' => q<trap with signal 
numbers>,

-- 
Git repository for devscripts


-- 
To unsubscribe, send mail to [email protected].

Reply via email to