mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-11-25 04:35:44 +00:00
Use plain stat instead of safe_stat.
This commit is contained in:
parent
41e6704efd
commit
4e6de57b8f
3 changed files with 5 additions and 5 deletions
|
@ -451,7 +451,7 @@ delete_target (file, on_behalf_of)
|
|||
}
|
||||
#endif
|
||||
|
||||
if (safe_stat (file->name, &st) == 0
|
||||
if (stat (file->name, &st) == 0
|
||||
&& S_ISREG (st.st_mode)
|
||||
&& (time_t) st.st_mtime != file->last_mtime)
|
||||
{
|
||||
|
@ -464,7 +464,7 @@ delete_target (file, on_behalf_of)
|
|||
perror_with_name ("unlink: ", file->name);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Delete all non-precious targets of CHILD unless they were already deleted.
|
||||
Set the flag in CHILD to say they've been deleted. */
|
||||
|
|
2
remake.c
2
remake.c
|
@ -1000,7 +1000,7 @@ name_mtime (name)
|
|||
{
|
||||
struct stat st;
|
||||
|
||||
if (safe_stat (name, &st) < 0)
|
||||
if (stat (name, &st) < 0)
|
||||
return (time_t) -1;
|
||||
|
||||
return (time_t) st.st_mtime;
|
||||
|
|
4
vpath.c
4
vpath.c
|
@ -1,5 +1,5 @@
|
|||
/* Implementation of pattern-matching file search paths for GNU Make.
|
||||
Copyright (C) 1988, 1989, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
|
||||
Copyright (C) 1988, 89, 91, 92, 93, 94, 95 Free Software Foundation, Inc.
|
||||
This file is part of GNU Make.
|
||||
|
||||
GNU Make is free software; you can redistribute it and/or modify
|
||||
|
@ -419,7 +419,7 @@ selective_vpath_search (path, file, mtime_ptr)
|
|||
*n = '/';
|
||||
|
||||
if (!exists_in_cache /* Makefile-mentioned file need not exist. */
|
||||
|| safe_stat (name, &st) == 0) /* Does it really exist? */
|
||||
|| stat (name, &st) == 0) /* Does it really exist? */
|
||||
{
|
||||
/* We have found a file.
|
||||
Store the name we found into *FILE for the caller. */
|
||||
|
|
Loading…
Reference in a new issue