diff options
author | 1996-09-23 19:05:53 +0000 | |
---|---|---|
committer | 1996-09-23 19:05:53 +0000 | |
commit | 5f7015d36a973c065048378ad53229a43390237d (patch) | |
tree | a460c915f8f9a98e7e305cddd10a5bd124dc3935 | |
parent | Fixes to avoid using asm to get pointer to start sp in ld.so. It's a little (diff) | |
download | wireguard-openbsd-5f7015d36a973c065048378ad53229a43390237d.tar.xz wireguard-openbsd-5f7015d36a973c065048378ad53229a43390237d.zip |
Build ld.so for Mips
-rw-r--r-- | gnu/libexec/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/libexec/Makefile b/gnu/libexec/Makefile index 64b8d3a2ada..3cd3377a808 100644 --- a/gnu/libexec/Makefile +++ b/gnu/libexec/Makefile @@ -1,5 +1,9 @@ -# $NetBSD: Makefile,v 1.4 1995/04/23 07:52:55 cgd Exp $ +# $OpenBSD: Makefile,v 1.2 1996/09/23 19:05:53 pefo Exp $ SUBDIR= uucp +.if (${MACHINE_ARCH} == "mips") +SUBDIR+= ld.so +.endif + .include <bsd.subdir.mk> |