diff options
author | Andres Freund | 2024-04-25 14:51:33 +0000 |
---|---|---|
committer | Andres Freund | 2024-04-25 14:51:33 +0000 |
commit | 6d4bc96eb77bca6277880f218cd7a2f9e44bddc0 (patch) | |
tree | f43e1f22e34795d149815247ee56be77cf81032c /configure | |
parent | bb7f195ff78851e5fcee7230108a16d70be13579 (diff) |
Avoid unnecessary "touch meson.build" in vpath builds
In e6927270cd1 I added a 'touch meson.build' to configure.ac, to ensure
conflicts between in-tree configure based builds and meson builds are
automatically detected. Unfortunately I omitted spaces around the condition
restricting this to in-tree builds, leading to touch meson.build to also be
executed in vpath builds. While the only consequence of this buglet is an
unnecessary empty file in build directories, it seems worth backpatching.
Reported-by: Christoph Berg <[email protected]>
Discussion: https://postgr.es/m/[email protected]
Backpatch: 16-, where the meson based build was added
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure index cfbd2a096f4..89644f2249e 100755 --- a/configure +++ b/configure @@ -20644,6 +20644,6 @@ fi # Ensure that any meson build directories would reconfigure and see that # there's a conflicting in-tree build and can error out. -if test "$vpath_build"="no"; then +if test "$vpath_build" = "no"; then touch meson.build fi |