Re: [PATCH] automake: rewrite scan_variable_expansions regex

2023-08-05 Thread Karl Berry
The regex pattern in function scan_variable_expansions() fails to report a portability warning when a dollar-escaped dollar sign precedes the variable: foo_SOURCES = a.c $$$(patsubst a.c,a,b) Thanks Jan. Any chance you could add a check to one of the tests, I guess dollarv

[PATCH] automake: rewrite scan_variable_expansions regex

2023-08-03 Thread Jan Engelhardt
The regex pattern in function scan_variable_expansions() fails to report a portability warning when a dollar-escaped dollar sign precedes the variable: foo_SOURCES = a.c $$$(patsubst a.c,a,b) --- lib/Automake/Variable.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --g