diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2007-09-16 10:39:08 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2007-09-16 10:39:08 +0000 |
commit | 92619b2927c391fb7e94d552e365b85540a5c4c0 (patch) | |
tree | b727578db4f88a0e10abd1ba59e091bcdbc2696f /usr.bin/make/compat.c | |
parent | 2cd743898ff20f9b51a56a61f2005ff0a77a263e (diff) |
first step towards sanity: take the functions common to parallel/not parallel
make outside of make.c and job.c, and create an engine.c file to hold them.
Diffstat (limited to 'usr.bin/make/compat.c')
-rw-r--r-- | usr.bin/make/compat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/compat.c b/usr.bin/make/compat.c index 8a20b3d54d9..f0a33bd2a5b 100644 --- a/usr.bin/make/compat.c +++ b/usr.bin/make/compat.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: compat.c,v 1.54 2007/09/16 09:46:14 espie Exp $ */ +/* $OpenBSD: compat.c,v 1.55 2007/09/16 10:39:07 espie Exp $ */ /* $NetBSD: compat.c,v 1.14 1996/11/06 17:59:01 christos Exp $ */ /* @@ -51,7 +51,7 @@ #include "config.h" #include "defines.h" #include "dir.h" -#include "job.h" +#include "engine.h" #include "compat.h" #include "suff.h" #include "var.h" |