Message ID | 20220405100020.48663-1-adam@dinwoodie.org (mailing list archive) |
---|---|
State | Accepted |
Commit | 2e37594797155e5d6134db3ce1e23bf42045934b |
Headers | show |
Series | configure.ac: fix HAVE_SYNC_FILE_RANGE definition | expand |
On Tue, Apr 05, 2022 at 11:00:20AM +0100, Adam Dinwoodie wrote: > If sync_file_range is not available when building the configure script, > there is a cosmetic bug when running that script reporting > "HAVE_SYNC_FILE_RANGE: command not found". Remove that error message by > defining HAVE_SYNC_FILE_RANGE to an empty string, rather than generating > a script where that appears as a bare command. > > Signed-off-by: Adam Dinwoodie <adam@dinwoodie.org> > --- > configure.ac | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/configure.ac b/configure.ac > index 6bd6bef1c4..316a31d231 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -1087,7 +1087,7 @@ GIT_CONF_SUBST([HAVE_CLOCK_MONOTONIC]) > # Define HAVE_SYNC_FILE_RANGE=YesPlease if sync_file_range is available. > GIT_CHECK_FUNC(sync_file_range, > [HAVE_SYNC_FILE_RANGE=YesPlease], > - [HAVE_SYNC_FILE_RANGE]) > + [HAVE_SYNC_FILE_RANGE=]) > GIT_CONF_SUBST([HAVE_SYNC_FILE_RANGE]) > > # > -- > 2.35.1 > Thanks for fixing this. Looks good to me. -Neeraj
Neeraj Singh <nksingh85@gmail.com> writes: > On Tue, Apr 05, 2022 at 11:00:20AM +0100, Adam Dinwoodie wrote: >> If sync_file_range is not available when building the configure script, >> there is a cosmetic bug when running that script reporting >> "HAVE_SYNC_FILE_RANGE: command not found". Remove that error message by >> defining HAVE_SYNC_FILE_RANGE to an empty string, rather than generating >> a script where that appears as a bare command. >> >> Signed-off-by: Adam Dinwoodie <adam@dinwoodie.org> >> --- >> configure.ac | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/configure.ac b/configure.ac >> index 6bd6bef1c4..316a31d231 100644 >> --- a/configure.ac >> +++ b/configure.ac >> @@ -1087,7 +1087,7 @@ GIT_CONF_SUBST([HAVE_CLOCK_MONOTONIC]) >> # Define HAVE_SYNC_FILE_RANGE=YesPlease if sync_file_range is available. >> GIT_CHECK_FUNC(sync_file_range, >> [HAVE_SYNC_FILE_RANGE=YesPlease], >> - [HAVE_SYNC_FILE_RANGE]) >> + [HAVE_SYNC_FILE_RANGE=]) >> GIT_CONF_SUBST([HAVE_SYNC_FILE_RANGE]) >> >> # >> -- >> 2.35.1 >> > > Thanks for fixing this. Looks good to me. Thanks, both. Will apply.
diff --git a/configure.ac b/configure.ac index 6bd6bef1c4..316a31d231 100644 --- a/configure.ac +++ b/configure.ac @@ -1087,7 +1087,7 @@ GIT_CONF_SUBST([HAVE_CLOCK_MONOTONIC]) # Define HAVE_SYNC_FILE_RANGE=YesPlease if sync_file_range is available. GIT_CHECK_FUNC(sync_file_range, [HAVE_SYNC_FILE_RANGE=YesPlease], - [HAVE_SYNC_FILE_RANGE]) + [HAVE_SYNC_FILE_RANGE=]) GIT_CONF_SUBST([HAVE_SYNC_FILE_RANGE]) #
If sync_file_range is not available when building the configure script, there is a cosmetic bug when running that script reporting "HAVE_SYNC_FILE_RANGE: command not found". Remove that error message by defining HAVE_SYNC_FILE_RANGE to an empty string, rather than generating a script where that appears as a bare command. Signed-off-by: Adam Dinwoodie <adam@dinwoodie.org> --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)