summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-12-13 15:45:59 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-12-13 15:45:59 +0000
commit6d18b75cbd2c0fea9ba1d3c3d683708c113c3e1e (patch)
tree3986df676d88d3e9623b1568a3da0a8dd1e05e4c /Makefile
parent27a41dd752b5fff8a4eb23991a44d1c9cc946dc0 (diff)
ldconfig hack for the mips
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1810420bf2c..bb1790311a3 100644
--- a/Makefile
+++ b/Makefile
@@ -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