diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2007-09-16 12:09:37 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2007-09-16 12:09:37 +0000 |
commit | 6555d0f34894b30c5995ae2a70e227baddd0ad8b (patch) | |
tree | c9f7b180bd3a30b74dba203b0c9f4bc11485ff27 /usr.bin/make/arch.c | |
parent | efd08e944942d0060ea6b889d7eddc409d56eaec (diff) |
rename Targ_FmtTime into time_to_string and move it, as it's not related
to target nodes at all (reduces modules inter-dependencies)
Diffstat (limited to 'usr.bin/make/arch.c')
-rw-r--r-- | usr.bin/make/arch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/arch.c b/usr.bin/make/arch.c index 8000dece5be..c53d962b884 100644 --- a/usr.bin/make/arch.c +++ b/usr.bin/make/arch.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: arch.c,v 1.65 2007/09/16 11:29:34 espie Exp $ */ +/* $OpenBSD: arch.c,v 1.66 2007/09/16 12:09:36 espie Exp $ */ /* $NetBSD: arch.c,v 1.17 1996/11/06 17:58:59 christos Exp $ */ /* @@ -1035,7 +1035,7 @@ Arch_LibOODate(GNode *gn) if (!is_out_of_date(modTimeTOC)) { if (DEBUG(ARCH) || DEBUG(MAKE)) printf("%s modified %s...", RANLIBMAG, - Targ_FmtTime(modTimeTOC)); + time_to_string(modTimeTOC)); return is_strictly_before(modTimeTOC, gn->cmtime); } /* A library w/o a table of contents is out-of-date. */ |