mirror of
https://github.com/mirror/make.git
synced 2024-12-29 14:30:42 +08:00
Formerly read.c.~64~
This commit is contained in:
parent
2e0e3d22ec
commit
f84518396b
28
read.c
28
read.c
@ -122,10 +122,20 @@ read_all_makefiles (makefiles)
|
||||
default makefiles and don't let the default goal come from there. */
|
||||
|
||||
{
|
||||
char *value = allocated_variable_expand ("$(MAKEFILES)");
|
||||
char *value;
|
||||
char *name, *p;
|
||||
unsigned int length;
|
||||
|
||||
{
|
||||
/* Turn off --warn-undefined-variables while we expand MAKEFILES. */
|
||||
int save = warn_undefined_variables_flag;
|
||||
warn_undefined_variables_flag = 0;
|
||||
|
||||
value = allocated_variable_expand ("$(MAKEFILES)");
|
||||
|
||||
warn_undefined_variables_flag = save;
|
||||
}
|
||||
|
||||
/* Set NAME to the start of next token and LENGTH to its length.
|
||||
MAKEFILES is updated for finding remaining tokens. */
|
||||
p = value;
|
||||
@ -1766,8 +1776,20 @@ tilde_expand (name)
|
||||
if (name[1] == '/' || name[1] == '\0')
|
||||
{
|
||||
extern char *getenv ();
|
||||
char *home_dir = allocated_variable_expand ("$(HOME)");
|
||||
int is_variable = home_dir[0] != '\0';
|
||||
char *home_dir;
|
||||
int is_variable;
|
||||
|
||||
{
|
||||
/* Turn off --warn-undefined-variables while we expand HOME. */
|
||||
int save = warn_undefined_variables_flag;
|
||||
warn_undefined_variables_flag = 0;
|
||||
|
||||
home_dir = allocated_variable_expand ("$(HOME)");
|
||||
|
||||
warn_undefined_variables_flag = save;
|
||||
}
|
||||
|
||||
is_variable = home_dir[0] != '\0';
|
||||
if (!is_variable)
|
||||
{
|
||||
free (home_dir);
|
||||
|
Loading…
Reference in New Issue
Block a user