diff options
author | he <he@pkgsrc.org> | 2020-12-01 23:44:00 +0000 |
---|---|---|
committer | he <he@pkgsrc.org> | 2020-12-01 23:44:00 +0000 |
commit | 8c99a3c76923b59120b47187281ea465c00d0d0e (patch) | |
tree | 8733c124ac1011d66ee6fc71320609ba1b0fb1a5 /lang/ocaml | |
parent | b9ad1470ddc57de61f802db82b77ae03dc40ec5b (diff) | |
download | pkgsrc-8c99a3c76923b59120b47187281ea465c00d0d0e.tar.gz |
NetBSD/powerpc also builds shared libs -- fix PLIST errors.
Diffstat (limited to 'lang/ocaml')
-rw-r--r-- | lang/ocaml/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/ocaml/Makefile b/lang/ocaml/Makefile index cfef3e506b9..8834420d8fe 100644 --- a/lang/ocaml/Makefile +++ b/lang/ocaml/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.135 2020/04/11 08:25:20 jperkin Exp $ +# $NetBSD: Makefile,v 1.136 2020/12/01 23:44:00 he Exp $ .include "Makefile.common" @@ -54,11 +54,11 @@ PLIST.ocaml-prof= yes # XXX This conditional is not complete. It should match the # conditional in ocaml-x.y.z/configure. .if (${MACHINE_ARCH} == "i386") || (${MACHINE_ARCH} == "x86_64") || \ - (${MACHINE_ARCH} == "aarch64") + (${MACHINE_ARCH} == "aarch64") || (${MACHINE_ARCH} == "powerpc") . if !empty(MACHINE_PLATFORM:MLinux-*-*) || \ !empty(MACHINE_PLATFORM:MFreeBSD-*-*) || \ !empty(MACHINE_PLATFORM:MDragonFly-*-*) || \ - (!empty(MACHINE_PLATFORM:MNetBSD-*-*) && empty(MACHINE_PLATFORM:MNetBSD-*-powerpc)) || \ + !empty(MACHINE_PLATFORM:MNetBSD-*-*) || \ !empty(MACHINE_PLATFORM:MDarwin-*-*) || \ !empty(MACHINE_PLATFORM:MSunOS-*-*) PLIST.ocaml-nat= yes |