diff options
author | Paul Smith <psmith@gnu.org> | 2000-06-13 05:22:52 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2000-06-13 05:22:52 +0000 |
commit | 4972b017b63f3ce324bfa65a1b46a2a173baf463 (patch) | |
tree | d4bac994ae10ea2290d195dfe12978a8bfcda2ea /vpath.c | |
parent | 4a5550c8225d762f684d4047e20cc45274b6a785 (diff) | |
download | gunmake-4972b017b63f3ce324bfa65a1b46a2a173baf463.tar.gz |
* Some timestamp fixes from Paul Eggert.
* Fix compilation on Linux; use libintl.h and not gettext.h when using
the system gettext.
Diffstat (limited to 'vpath.c')
-rw-r--r-- | vpath.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -525,10 +525,10 @@ selective_vpath_search (path, file, mtime_ptr) if (mtime_ptr != 0) /* Store the modtime into *MTIME_PTR for the caller. If we have had no need to stat the file here, - we record a zero modtime to indicate this. */ + we record UNKNOWN_MTIME to indicate this. */ *mtime_ptr = (exists_in_cache - ? FILE_TIMESTAMP_STAT_MODTIME (st) - : (FILE_TIMESTAMP) 0); + ? FILE_TIMESTAMP_STAT_MODTIME (name, st) + : UNKNOWN_MTIME); free (name); return 1; |