Closed metti closed 3 years ago
Not only are ' ' and '\t' are considered bad in variable names used in if statements, actually any whitespace including '\n' is considered illegal. Fix that by testing for anything matching isspace.
' '
'\t'
'\n'
isspace
This fixes testcase/ifdef_ret_in_arg.mk.
testcase/ifdef_ret_in_arg.mk
Not only are
' '
and'\t'
are considered bad in variable names used in if statements, actually any whitespace including'\n'
is considered illegal. Fix that by testing for anything matchingisspace
.This fixes
testcase/ifdef_ret_in_arg.mk
.