diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-07-31 00:01:05 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-07-31 00:01:05 +0000 |
commit | 9a2516fc45f5a96899127139d9231ac1aa97197b (patch) | |
tree | 3b79172fff6abbeb282c39fa1219a2abfb046cb3 /usr.bin/make/arch.c | |
parent | 9349bee2dbb23f5d2cb9631abca29844b0a55356 (diff) |
RANLIBMAG should not be set on alphas, as make doesn't know ECOFF archives
Diffstat (limited to 'usr.bin/make/arch.c')
-rw-r--r-- | usr.bin/make/arch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/make/arch.c b/usr.bin/make/arch.c index 3a95fe3c6e7..48370dc4b19 100644 --- a/usr.bin/make/arch.c +++ b/usr.bin/make/arch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: arch.c,v 1.4 1996/03/27 19:32:35 niklas Exp $ */ +/* $OpenBSD: arch.c,v 1.5 1996/07/31 00:01:04 niklas Exp $ */ /* $NetBSD: arch.c,v 1.14 1996/03/12 18:04:27 christos Exp $ */ /* @@ -44,7 +44,7 @@ static char sccsid[] = "@(#)arch.c 5.7 (Berkeley) 12/28/90"; static char rcsid[] = "$NetBSD: arch.c,v 1.14 1996/03/12 18:04:27 christos Exp $"; #else -static char rcsid[] = "$OpenBSD: arch.c,v 1.4 1996/03/27 19:32:35 niklas Exp $"; +static char rcsid[] = "$OpenBSD: arch.c,v 1.5 1996/07/31 00:01:04 niklas Exp $"; #endif #endif /* not lint */ @@ -102,7 +102,7 @@ static char rcsid[] = "$OpenBSD: arch.c,v 1.4 1996/03/27 19:32:35 niklas Exp $"; #include <sys/param.h> #include <ctype.h> #include <ar.h> -#if !defined(__svr4__) && !defined(__SVR4) +#if !defined(__svr4__) && !defined(__SVR4) && !defined(__alpha__) #include <ranlib.h> #endif #include <utime.h> |