linuxlizard / pymake

Parse GNU Makefiles with Python. Work in progress!
GNU General Public License v2.0
29 stars 9 forks source link

patsubst shortcut ':=' failing #6

Closed linuxlizard closed 1 year ago

linuxlizard commented 1 year ago

Example:

SUBS=gpl usr lib modules
$(info clean-rule=$(SUBS:=-clean))

@:;@:

Result should be gpl-clean usr-clean lib-clean modules-clean instead seeing: -clean -clean -clean -clean -clean