From 849665433c715e1ad6e7ead61773e67c875ba662 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sat, 23 Mar 2024 17:53:36 +0100 Subject: [PATCH] gnulib-tool.py: Print "executing touch config.h.in". * pygnulib/GLTestDir.py (GLTestDir.execute): Print "executing touch config.h.in", like gnulib-tool.sh does. --- ChangeLog | 6 ++++++ pygnulib/GLTestDir.py | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/ChangeLog b/ChangeLog index ebb2b5874c..22d1684b13 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2024-03-23 Bruno Haible + + gnulib-tool.py: Print "executing touch config.h.in". + * pygnulib/GLTestDir.py (GLTestDir.execute): Print + "executing touch config.h.in", like gnulib-tool.sh does. + 2024-03-23 Bruno Haible gnulib-tool.py: Refactor. diff --git a/pygnulib/GLTestDir.py b/pygnulib/GLTestDir.py index 1807112e24..5f6fc1a0d9 100644 --- a/pygnulib/GLTestDir.py +++ b/pygnulib/GLTestDir.py @@ -714,6 +714,8 @@ class GLTestDir(object): # autoheader args = [UTILS['autoheader']] constants.execute(args, verbose) + # Explicit 'touch config.h.in': see . + print('executing touch config.h.in') Path('config.h.in').touch() # automake args = [UTILS['automake'], '--add-missing', '--copy'] @@ -746,6 +748,8 @@ class GLTestDir(object): # autoheader args = [UTILS['autoheader']] constants.execute(args, verbose) + # Explicit 'touch config.h.in': see . + print('executing touch config.h.in') Path('config.h.in').touch() # automake args = [UTILS['automake'], '--add-missing', '--copy'] -- 2.39.5