diff options
author | 1996-12-13 15:45:58 +0000 | |
---|---|---|
committer | 1996-12-13 15:45:58 +0000 | |
commit | a60dba073b75e37aa7e1d7c3043f79fb0871e4f7 (patch) | |
tree | c0ebb8eac7500f363434132e9bf1f7a3bc3b9a20 | |
parent | add quotactl (diff) | |
download | wireguard-openbsd-a60dba073b75e37aa7e1d7c3043f79fb0871e4f7.tar.xz wireguard-openbsd-a60dba073b75e37aa7e1d7c3043f79fb0871e4f7.zip |
ldconfig hack for the mips
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.12 1996/06/02 10:44:55 tholo Exp $ +# $OpenBSD: Makefile,v 1.13 1996/12/13 15:45:58 deraadt Exp $ # $NetBSD: Makefile,v 1.25 1995/10/09 02:11:28 thorpej Exp $ .include <bsd.own.mk> # for NOMAN, if it's there. @@ -46,6 +46,9 @@ build: ${MAKE} cleandir (cd ${.CURDIR}/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install) (cd ${.CURDIR}/gnu/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install) +.if (${MACHINE_ARCH} == "mips") + ldconfig # Fuck. +.endif .if defined(KERBEROS) (cd ${.CURDIR}/kerberosIV && ${MAKE} build) .endif |