diff options
author | Andras Timar <andras.timar@collabora.com> | 2014-02-19 14:40:45 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2014-02-19 14:41:09 +0100 |
commit | 77e48e23641846653691e54f315080c8d8a2d898 (patch) | |
tree | 113150ff2aed9fc65e28034562efdb51cc1ce83f /postprocess | |
parent | d12e4724748752b62b38f15f1223df5b87a00530 (diff) |
use 'ne' for string comparison
Change-Id: I0d059933786119c3c26202c7b48d793404e5a0eb
Diffstat (limited to 'postprocess')
-rw-r--r-- | postprocess/signing/signing.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/postprocess/signing/signing.pl b/postprocess/signing/signing.pl index fc17092594d5..875076ac7c48 100644 --- a/postprocess/signing/signing.pl +++ b/postprocess/signing/signing.pl @@ -47,7 +47,7 @@ if ( $#ARGV < 2 ) { exit(1); } @args = parse_options(); -get_exclude_files() if ($opt_exclude != ""); +get_exclude_files() if ($opt_exclude ne ""); @files_to_sign = get_files(\@args); if ( $opt_log ) { # logging open(LOG,">$opt_log") || die "Can't open log file $opt_log\n"; |