[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: gnulib-tool.py: Follow gnulib-tool changes, part 59.
|
From: |
Bruno Haible |
|
Subject: |
Re: gnulib-tool.py: Follow gnulib-tool changes, part 59. |
|
Date: |
Sun, 17 Mar 2024 00:20:38 +0100 |
Collin Funk wrote:
> This patch just modifies the timestamp of 'config.h.in' after
> executing 'autoheader'.
>
> I've used the Pathlib touch function which I will admit looks a bit
> strange [1]. I've tested it and it should update the timestamps
> properly though.
Thanks! Applied.
I see nothing wrong with Path.touch() either.
> I don't think we can use it to
> call 'autoheader && touch config.h.in'.
Yes, it's simpler to implement the '&&' logic in Python rather than to
spawn a /bin/sh.
Bruno