mirror of
https://git.savannah.gnu.org/git/make.git
synced 2025-02-07 06:47:52 +00:00
(try_variable_definition): Return after abort.
This commit is contained in:
parent
dc8983dc8b
commit
98104e4d2e
1 changed files with 1 additions and 1 deletions
|
@ -631,7 +631,7 @@ try_variable_definition (filename, lineno, line, origin)
|
||||||
case bogus:
|
case bogus:
|
||||||
/* Should not be possible. */
|
/* Should not be possible. */
|
||||||
abort ();
|
abort ();
|
||||||
break;
|
return 0;
|
||||||
case simple:
|
case simple:
|
||||||
/* A simple variable definition "var := value". Expand the value. */
|
/* A simple variable definition "var := value". Expand the value. */
|
||||||
value = variable_expand (p);
|
value = variable_expand (p);
|
||||||
|
|
Loading…
Reference in a new issue