From 7d12f734f12ada0ffd27519fd29b62adfe1b58d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Sur=C3=BD?= Date: Thu, 17 Feb 2022 22:24:51 +0100 Subject: [PATCH] Disable main branch checking for v9_18 branch The util/check-changes script has two modes of operation - more relaxed release branch mode and strict development branch mode. When we forked the v9_18 branch, the stricter mode stayed enabled. Disable the strict CHANGES file checking suitable only for development branch. --- util/check-changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/check-changes b/util/check-changes index ac52645486..7b2427d734 100644 --- a/util/check-changes +++ b/util/check-changes @@ -16,7 +16,7 @@ eval 'exec /usr/bin/perl -S $0 ${1+"$@"}' # this emulates #! processing on NIH machines. # (remove #! line above if indigestible) -$master = 1; +$master = 0; eval '$'.$1.'$2;' while $ARGV[0] =~ /^([A-Za-z_0-9]+=)(.*)/ && shift; # process any FOO=bar switches