diff options
| author | Steve Passe <fsmp@FreeBSD.org> | 1997-08-14 04:46:20 +0000 |
|---|---|---|
| committer | Steve Passe <fsmp@FreeBSD.org> | 1997-08-14 04:46:20 +0000 |
| commit | 74a19f122947157cf2b9cb752f084f3475b9173f (patch) | |
| tree | 718cfbbcedc23ab686987fc165c5b2ae4a4eadfb /usr.bin | |
| parent | 5842d4e5b2a53b4913cfce91014d97dba980a27f (diff) | |
Notes
Diffstat (limited to 'usr.bin')
| -rw-r--r-- | usr.bin/make/main.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c index dfe0c43d15c9..92b3de9d49c7 100644 --- a/usr.bin/make/main.c +++ b/usr.bin/make/main.c @@ -47,7 +47,7 @@ static const char copyright[] = static char sccsid[] = "@(#)main.c 8.3 (Berkeley) 3/19/94"; #endif static const char rcsid[] = - "$Id$"; + "$Id: main.c,v 1.18 1997/07/24 06:58:06 charnier Exp $"; #endif /* not lint */ /*- @@ -315,13 +315,6 @@ rearg: while((c = getopt(argc, argv, OPTFLAGS)) != -1) { } } - /* - * Be compatible if user did not specify -j and did not explicitly - * turned compatibility on - */ - if (!compatMake && !forceJobs) - compatMake = TRUE; - oldVars = TRUE; /* @@ -344,6 +337,13 @@ rearg: while((c = getopt(argc, argv, OPTFLAGS)) != -1) { } (void)Lst_AtEnd(create, (ClientData)estrdup(*argv)); } + + /* + * Be compatible if user did not specify -j and did not explicitly + * turned compatibility on + */ + if (!compatMake && !forceJobs) + compatMake = TRUE; } /*- |
