diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 2000-09-07 04:02:34 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 2000-09-07 04:02:34 +0000 |
commit | 3e59a4e56291301564716d995df45617dccdb6d6 (patch) | |
tree | 0191f4d1df27541ba2438faec1867740eca810d3 /libexec | |
parent | 80643877923e4017438f399c86229df870dffaff (diff) |
For shared libraries, an ld.so is required.
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libexec/Makefile b/libexec/Makefile index e4b905c7442..5f684ec1b94 100644 --- a/libexec/Makefile +++ b/libexec/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.7 (Berkeley) 4/1/91 -# $OpenBSD: Makefile,v 1.16 2000/09/03 18:41:14 espie Exp $ +# $OpenBSD: Makefile,v 1.17 2000/09/07 04:02:33 rahnds Exp $ .include <bsd.own.mk> @@ -11,5 +11,8 @@ SUBDIR= atrun comsat fingerd ftpd getNAME getty identd lockspool \ .if (${YP:L} == "yes") SUBDIR+=rpc.yppasswdd .endif +.if (${MACHINE_ARCH} == "powerpc") +SUBDIR+=ld.so +.endif .include <bsd.subdir.mk> |