diff options
author | jdp <jdp@FreeBSD.org> | 1998-10-15 16:09:56 +0000 |
---|---|---|
committer | jdp <jdp@FreeBSD.org> | 1998-10-15 16:09:56 +0000 |
commit | d8b0acd7318b41292db67b6e41a90d9ff681fa24 (patch) | |
tree | f85f48598ee07fbbb3a0d836797c999d39182575 /usr.bin/make | |
parent | 34ec08b0e276ec58e0134cf399ef1bc2c166e6ff (diff) | |
download | FreeBSD-src-d8b0acd7318b41292db67b6e41a90d9ff681fa24.zip FreeBSD-src-d8b0acd7318b41292db67b6e41a90d9ff681fa24.tar.gz |
Fix make world breakage from last commit.
Diffstat (limited to 'usr.bin/make')
-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 1411592..e886af0 100644 --- a/usr.bin/make/arch.c +++ b/usr.bin/make/arch.c @@ -35,7 +35,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: arch.c,v 1.8 1997/02/22 19:27:05 peter Exp $ + * $Id: arch.c,v 1.9 1998/10/15 13:00:34 jkoshy Exp $ */ #ifndef lint @@ -1187,7 +1187,7 @@ Arch_LibOODate (gn) oodate = TRUE; } #else - oodate = (gm->mtime == 0); /* out-of-date if not present */ + oodate = (gn->mtime == 0); /* out-of-date if not present */ #endif } return (oodate); |