From 295cca1e1745acfea49b54681d566dd3d0c1dd19 Mon Sep 17 00:00:00 2001 From: Maxime Devos Date: Fri, 30 Apr 2021 15:45:02 +0200 Subject: [PATCH 6/6] etc: committer: Explain changes in #:configure-flags. * etc/committer.scm.in (change-commit-message/one-pass)[explain-argument]: Handle #:configure-flags the same way as #:make-flags for now. --- etc/committer.scm.in | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/etc/committer.scm.in b/etc/committer.scm.in index fc3c929f17..0fd383533d 100755 --- a/etc/committer.scm.in +++ b/etc/committer.scm.in @@ -381,8 +381,12 @@ SUMMARY: first using a ‘void port’, then with the ‘real’ output port." (define (explain-argument keyword old new) (unless (equal? old new) (case keyword - ((#:make-flags) - (format port "[arguments]<#:make-flags>:") + ;; Sometimes, arguments like "CC=TARGET-gcc" are passed to the + ;; configure script. Their interpretation is sometimes the same + ;; as in makefiles. Hence, for now we unify the handling of + ;; #:make-flags and #:configure-flags. + ((#:make-flags #:configure-flags) + (format port "[arguments]<~a>:" keyword) (if (explain-list-delta (unwrap-list old) (unwrap-list new) #:pairwise/change explain-make-flags/change) ;; There were some unexplained changes. -- 2.31.1