linuxlizard / pymake

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

fix: list index out of range error when parsing ifeq that has an empty first argument #4

Closed cizezsy closed 1 year ago

cizezsy commented 1 year ago

Example:

download:
ifeq (,$(wildcard ./glob.c))
    curl … -o glob.c
endif
linuxlizard commented 1 year ago

Thank you for your fix!