Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 11 Dec 2024 17:34:13 GMT
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 0a0fe0bf5486 - main - java/intellij-ultimate: fix build on powerpc64le
Message-ID:  <202412111734.4BBHYDsd029354@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by pkubaj:

URL: https://cgit.FreeBSD.org/ports/commit/?id=0a0fe0bf5486c617fdf692c23abec28525dcf653

commit 0a0fe0bf5486c617fdf692c23abec28525dcf653
Author:     Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2024-12-11 16:42:27 +0000
Commit:     Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2024-12-11 17:33:21 +0000

    java/intellij-ultimate: fix build on powerpc64le
    
    install  -s -m 0644 /wrkdirs/usr/ports/java/intellij-ultimate/work/jna/com/sun/jna/freebsd-powerpc64le/libjnidispatch.so /wrkdirs/usr/ports/java/intellij-ultimate/work/stage/usr/local/share/intellij-ultimate/lib/jna/
    install: /wrkdirs/usr/ports/java/intellij-ultimate/work/jna/com/sun/jna/freebsd-powerpc64le/libjnidispatch.so: No such file or directory
---
 java/intellij-ultimate/Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/java/intellij-ultimate/Makefile b/java/intellij-ultimate/Makefile
index 8a581a8920f5..b685d1e12a06 100644
--- a/java/intellij-ultimate/Makefile
+++ b/java/intellij-ultimate/Makefile
@@ -66,6 +66,8 @@ post-patch:
 
 .if ${ARCH} == "amd64"
 JNI_ARCH=	x86-64
+.elif ${ARCH} == "powerpc64le"
+JNI_ARCH=	ppc64le
 .else
 JNI_ARCH=	${ARCH}
 .endif



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202412111734.4BBHYDsd029354>