summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2011-06-29 01:21:05 +0200
committerRichard W.M. Jones <rjones@redhat.com>2011-06-29 10:09:29 +0100
commit82763b5c23c8ff47d46f679d57f1af02f2a08df1 (patch)
tree487368cba9f43239abb32fe6aaad0a9e52dd0c36
parent73662156dae13a34ba214911bba62757d28f6847 (diff)
downloadhivex-82763b5c23c8ff47d46f679d57f1af02f2a08df1.tar.gz
hivex-82763b5c23c8ff47d46f679d57f1af02f2a08df1.tar.xz
hivex-82763b5c23c8ff47d46f679d57f1af02f2a08df1.zip
maint: add cfg.mk to prepare for syntax-check tests
* cfg.mk: New file, to tell maint.mk which syntax-checks to skip for now, where .gnulib/ is, to exempt images/minimal from one of the tests and to exempt sh/hivexsh\.pod from another. Also exempt lib/gettext.h from sc_useless_cpp_parens.
-rw-r--r--cfg.mk21
1 files changed, 21 insertions, 0 deletions
diff --git a/cfg.mk b/cfg.mk
new file mode 100644
index 0000000..c1334fe
--- /dev/null
+++ b/cfg.mk
@@ -0,0 +1,21 @@
+# Tests not to run as part of "make distcheck".
+local-checks-to-skip = \
+ sc_prohibit_strcmp \
+ sc_two_space_separator_in_usage \
+ sc_prohibit_magic_number_exit \
+ sc_file_system \
+ sc_GPL_version \
+ sc_bindtextdomain \
+ sc_makefile_path_separator_check \
+ sc_program_name
+
+gnulib_dir = .gnulib
+
+exclude_file_name_regexp--sc_trailing_blank = \
+ ^sh/hivexsh\.pod$$
+
+exclude_file_name_regexp--sc_prohibit_empty_lines_at_EOF = \
+ ^images/minimal$$
+
+exclude_file_name_regexp--sc_useless_cpp_parens = \
+ ^lib/gettext\.h$$