summaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorPeter Krempa <pkrempa@redhat.com>2021-03-31 10:37:31 +0200
committerPeter Krempa <pkrempa@redhat.com>2021-04-06 16:53:49 +0200
commit8ccf97fa159c3f84412d9fc7b7152382756a7b2a (patch)
tree6749dca8d58a5b61671393e02aa0bee1f90599b2 /build-aux
parentcf60d9999bca9329e80f0f0064cb9b85bb1e9320 (diff)
downloadlibvirt-8ccf97fa159c3f84412d9fc7b7152382756a7b2a.tar.gz
syntax-check: Remove GFDL format check
Our docs don't use the GFDL so checking its format is pointless. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
Diffstat (limited to 'build-aux')
-rw-r--r--build-aux/syntax-check.mk8
1 files changed, 0 insertions, 8 deletions
diff --git a/build-aux/syntax-check.mk b/build-aux/syntax-check.mk
index 2ada23921e..a9f3aaf45f 100644
--- a/build-aux/syntax-check.mk
+++ b/build-aux/syntax-check.mk
@@ -1504,14 +1504,6 @@ sc_prohibit_backup_files:
{ echo '$(ME): found version controlled backup file' 1>&2; \
exit 1; } || :
-# Require the latest GFDL. Two regexp, since some .texi files end up
-# line wrapping between 'Free Documentation License,' and 'Version'.
-_GFDL_regexp = (Free ''Documentation.*Version 1\.[^3]|Version 1\.[^3] or any)
-sc_GFDL_version:
- @prohibit='$(_GFDL_regexp)' \
- halt='GFDL vN, N!=3' \
- $(_sc_search_regexp)
-
# This Perl code is slightly obfuscated. Not only is each "$" doubled
# because it's in a Makefile, but the $$c's are comments; we cannot
# use "#" due to the way the script ends up concatenated onto one line.