Re: [PATCH] fixincludes: Replace fgrep in genfixes script

2025-08-29 Thread Jonathan Wakely
On Thu, 28 Aug 2025 at 18:55, Rainer Orth wrote: > > Hi Jonathan, > > > On Thu, 28 Aug 2025 at 18:40, Rainer Orth wrote: > >> > >> Hi Jonathan, > >> > >> > POSIX says fgrep is obsolescent and grep -F should be used instead. > >> > >> grep -F isn't portable, unfortunately At least it's not supporte

Re: [PATCH] fixincludes: Replace fgrep in genfixes script

2025-08-28 Thread Sam James
Rainer Orth writes: > Hi Jonathan, > >> On Thu, 28 Aug 2025 at 18:40, Rainer Orth wrote: >>> >>> Hi Jonathan, >>> >>> > POSIX says fgrep is obsolescent and grep -F should be used instead. >>> >>> grep -F isn't portable, unfortunately At least it's not supported by >>> Solaris /bin/grep). It may

Re: [PATCH] fixincludes: Replace fgrep in genfixes script

2025-08-28 Thread Rainer Orth
Hi Jonathan, > On Thu, 28 Aug 2025 at 18:40, Rainer Orth wrote: >> >> Hi Jonathan, >> >> > POSIX says fgrep is obsolescent and grep -F should be used instead. >> >> grep -F isn't portable, unfortunately At least it's not supported by >> Solaris /bin/grep). It may be necessary to use AC_PROG_FGREP

Re: [PATCH] fixincludes: Replace fgrep in genfixes script

2025-08-28 Thread Jonathan Wakely
On Thu, 28 Aug 2025 at 18:40, Rainer Orth wrote: > > Hi Jonathan, > > > POSIX says fgrep is obsolescent and grep -F should be used instead. > > grep -F isn't portable, unfortunately At least it's not supported by > Solaris /bin/grep). It may be necessary to use AC_PROG_FGREP and > substitute the r

Re: [PATCH] fixincludes: Replace fgrep in genfixes script

2025-08-28 Thread Rainer Orth
Hi Jonathan, > POSIX says fgrep is obsolescent and grep -F should be used instead. grep -F isn't portable, unfortunately At least it's not supported by Solaris /bin/grep). It may be necessary to use AC_PROG_FGREP and substitute the result into the script. Rainer -- ---

[PATCH] fixincludes: Replace fgrep in genfixes script

2025-08-28 Thread Jonathan Wakely
POSIX says fgrep is obsolescent and grep -F should be used instead. fixincludes/ChangeLog: * genfixes: Use grep -F instead of fgrep. --- OK for trunk? fixincludes/genfixes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fixincludes/genfixes b/fixincludes/genfixes in