On Thu, May 18, 2023 at 02:03:58PM +0100, Jonathan Wakely via Gcc-patches wrote: > Fixes a fat finger error in the v1 patch, spotted by Jakub. > > -- >8 -- > > POSIX sh does not support the == for string comparisons, use = instead. > > The gen_directive_tests script uses a bash shebang so == does work, but > there's no reason this script can't just use the more portable form > anyway. > > PR bootstrap/105831 > > gcc/ChangeLog: > > * config.gcc: Use = operator instead of ==. > > gcc/testsuite/ChangeLog: > > * gcc.test-framework/gen_directive_tests: Use = operator instead > of ==.
That looks better ;) Ok. Jakub