mirror of
https://git.savannah.gnu.org/git/make.git
synced 2025-01-31 03:25:08 +00:00
(variable_expand): Fix braino in last change.
This commit is contained in:
parent
258dad0f9a
commit
2cbfa1024a
1 changed files with 1 additions and 1 deletions
2
expand.c
2
expand.c
|
@ -256,7 +256,7 @@ variable_expand (line)
|
|||
any variable references inside are now expanded.
|
||||
Is the resultant text a substitution reference? */
|
||||
|
||||
colon = index (beg, ':');
|
||||
colon = lindex (beg, end, ':');
|
||||
if (colon != 0)
|
||||
{
|
||||
/* This looks like a substitution reference: $(FOO:A=B). */
|
||||
|
|
Loading…
Reference in a new issue