summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorniklas <niklas@openbsd.org>1996-07-31 00:01:03 +0000
committerniklas <niklas@openbsd.org>1996-07-31 00:01:03 +0000
commite02e111498841c55a397c78ff7ad917738db62ca (patch)
tree338f515fefda0dad13f3ecbf4a7754f1c5b0a073
parentOh-oh, not now again!!! (diff)
downloadwireguard-openbsd-e02e111498841c55a397c78ff7ad917738db62ca.tar.xz
wireguard-openbsd-e02e111498841c55a397c78ff7ad917738db62ca.zip
RANLIBMAG should not be set on alphas, as make doesn't know ECOFF archives
-rw-r--r--usr.bin/make/arch.c6
-rw-r--r--usr.bin/make/config.h4
2 files changed, 5 insertions, 5 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>
diff --git a/usr.bin/make/config.h b/usr.bin/make/config.h
index f09a149ea0c..7292cf204b6 100644
--- a/usr.bin/make/config.h
+++ b/usr.bin/make/config.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: config.h,v 1.3 1996/06/26 05:36:28 deraadt Exp $ */
+/* $OpenBSD: config.h,v 1.4 1996/07/31 00:01:03 niklas Exp $ */
/* $NetBSD: config.h,v 1.5 1996/02/04 20:34:43 christos Exp $ */
/*
@@ -89,7 +89,7 @@
#define LIBSUFF ".a"
#define RECHECK
-#if !defined(__svr4__) && !defined(__SVR4)
+#if !defined(__svr4__) && !defined(__SVR4) && !defined(__alpha__)
# ifndef RANLIBMAG
# define RANLIBMAG "__.SYMDEF"
# endif