diff options
author | Gwenolé Beauchesne <gbeauchesne@mandriva.org> | 2005-02-16 13:14:17 +0000 |
---|---|---|
committer | Gwenolé Beauchesne <gbeauchesne@mandriva.org> | 2005-02-16 13:14:17 +0000 |
commit | 38d66256cb67caa154db3cd4422103b22fbc7715 (patch) | |
tree | ab2c213aa4eb1be1d2661518ccd526a4ca82b7a4 /check-multiarch-files | |
parent | 3736150229c90da0f14af46739e7f6c7e9ac4eb5 (diff) | |
download | multiarch-utils-38d66256cb67caa154db3cd4422103b22fbc7715.tar multiarch-utils-38d66256cb67caa154db3cd4422103b22fbc7715.tar.gz multiarch-utils-38d66256cb67caa154db3cd4422103b22fbc7715.tar.bz2 multiarch-utils-38d66256cb67caa154db3cd4422103b22fbc7715.tar.xz multiarch-utils-38d66256cb67caa154db3cd4422103b22fbc7715.zip |
new multiarch keyword hint: BITS_PER_WORD
Diffstat (limited to 'check-multiarch-files')
-rwxr-xr-x | check-multiarch-files | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/check-multiarch-files b/check-multiarch-files index 6611774..bb4bac7 100755 --- a/check-multiarch-files +++ b/check-multiarch-files @@ -53,7 +53,7 @@ while (<STDIN>) { my ($def, $val) = ($1, $2); # check for typical arch-dependent macro definitions - my @keywords_with_int = qw(SIZEOF_VOID_P SIZEOF_CHAR_P SIZEOF_LONG BYTES_PER_LONG BITS_PER_LONG); + my @keywords_with_int = qw(SIZEOF_VOID_P SIZEOF_CHAR_P SIZEOF_LONG BYTES_PER_LONG BITS_PER_LONG BITS_PER_WORD); foreach my $pat (@keywords_with_int) { if ($def =~ /$pat/ && int($val)) { $archdefs{$def}++; |