Signed-off-by: James Youngman <[email protected]> --- ChangeLog | 4 ++++ cfg.mk | 11 ++++++++--- 2 files changed, 12 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog index 1dcf0e9..42d2a51 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2010-04-02 James Youngman <[email protected]> + * cfg.mk: Explain that we cannot enable the sc_texinfo_acronym + syntax check right now, since the perm.texi file uses + @acronym{GNU} but we try to keep that in sync. with coreutils. + Mark error messages for translation. * find/parser.c (safe_atoi): Likewise. * find/pred.c (pred_context): Likewise. diff --git a/cfg.mk b/cfg.mk index eb20324..137029f 100644 --- a/cfg.mk +++ b/cfg.mk @@ -27,7 +27,6 @@ skip_defer = sc_program_name sc_prohibit_atoi_atof \ sc_prohibit_magic_number_exit sc_prohibit_stat_st_blocks \ sc_prohibit_strcmp sc_prohibit_test_minus_ao \ sc_prohibit_xalloc_without_use sc_space_tab \ - sc_texinfo_acronym # False positives I don't have a workaround for yet. false_positives = sc_obsolete_symbols sc_prohibit_cvs_keyword sc_the_the \ @@ -38,8 +37,14 @@ false_positives = sc_obsolete_symbols sc_prohibit_cvs_keyword sc_the_the \ mix_positives = sc_trailing_blank # Problems partly fixed in other patches which aren't merged yet. -skip_blocked = sc_useless_cpp_parens +skip_blocked_patch = sc_useless_cpp_parens + +# Problems we can't esaily fixed because they apply to files which we need +# to keep in sync, so can't easily make a local change to. +# sc_texinfo_acronym: perms.texi from coreutils uses @acronym{GNU}. +skip_blocked_notours = \ + sc_texinfo_acronym local-checks-to-skip = \ $(skip_too_picky) $(skip_dunno) $(false_positives) $(skip_defer) \ - $(mix_positives) $(skip_blocked) + $(mix_positives) $(skip_blocked_patch) $(skip_blocked_notours) -- 1.7.0 _______________________________________________ Findutils-patches mailing list [email protected] http://lists.gnu.org/mailman/listinfo/findutils-patches
