Re: [PATCH v2] automake: rewrite scan_variable_expansions regex

2023-08-09 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 much, Jan. It all worked for me. Pushed. --karl

[PATCH v2] automake: rewrite scan_variable_expansions regex

2023-08-07 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 +++-- t/dollarvar2.sh | 9 + 2 files changed,