mirror of
https://github.com/mirror/make.git
synced 2025-03-29 21:50:30 +08:00
Fix a bug where conditional variables weren't being expanded correctly.
This commit is contained in:
parent
a8f7173799
commit
ede263043c
@ -11,6 +11,13 @@ makebook*
|
|||||||
*.dep *.dvi *.toc *.aux *.log
|
*.dep *.dvi *.toc *.aux *.log
|
||||||
*.cp *.cps *.fn *.fns *.vr *.vrs *.tp *.tps *.ky *.kys *.pg *.pgs
|
*.cp *.cps *.fn *.fns *.vr *.vrs *.tp *.tps *.ky *.kys *.pg *.pgs
|
||||||
|
|
||||||
|
README aclocal.m4 config.h.in config.h configure Makefile.in
|
||||||
|
build.sh.in build.sh SMakefile config.ami README.DOS Makefile.DOS configh.dos
|
||||||
|
NMakefile config.h.W32 config.h-vms glob/Makefile.in
|
||||||
|
|
||||||
|
.deps .dep_segment glob/.deps
|
||||||
|
|
||||||
|
_*
|
||||||
sun4 i386 i386-netbsd hp300-netbsd hp300 rs6000 sun3 news800 amiga
|
sun4 i386 i386-netbsd hp300-netbsd hp300 rs6000 sun3 news800 amiga
|
||||||
hp700 hp834 mips sol2 i486-linux
|
hp700 hp834 mips sol2 i486-linux
|
||||||
|
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
1999-03-04 Paul D. Smith <psmith@gnu.org>
|
||||||
|
|
||||||
|
* variable.c (try_variable_definition): If we see a conditional
|
||||||
|
variable and we decide to set it, re-type it as recursive so it
|
||||||
|
will be expanded properly later.
|
||||||
|
|
||||||
1999-02-22 Paul D. Smith <psmith@gnu.org>
|
1999-02-22 Paul D. Smith <psmith@gnu.org>
|
||||||
|
|
||||||
* NEWS: Mention new .LIBPATTERNS feature.
|
* NEWS: Mention new .LIBPATTERNS feature.
|
||||||
|
@ -792,6 +792,7 @@ try_variable_definition (flocp, line, origin)
|
|||||||
free(expanded_name);
|
free(expanded_name);
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
|
flavor = f_recursive;
|
||||||
/* FALLTHROUGH */
|
/* FALLTHROUGH */
|
||||||
case f_recursive:
|
case f_recursive:
|
||||||
/* A recursive variable definition "var = value".
|
/* A recursive variable definition "var = value".
|
||||||
|
Loading…
Reference in New Issue
Block a user