Source: jcc
Version: 2.17-1
Severity: normal
Tags: patch
User: [email protected]
Usertag: ppc64el

Dear Maintainer,

The package jcc fails to build from source on ppc64el.
That happens because, although DEB_HOST_ARCH_CPU is ppc64el,
openjdk libs get installed under ppc64le path in this arch.
The patch attached includes that condition to debian/rules.

Thanks
Fernando


-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: ppc64el (ppc64le)

Kernel: Linux 3.13-1-powerpc64le (SMP w/4 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru jcc-2.17/debian/rules jcc-2.17/debian/rules
--- jcc-2.17/debian/rules	2013-09-21 08:41:17.000000000 +0000
+++ jcc-2.17/debian/rules	2014-07-07 14:15:06.000000000 +0000
@@ -15,6 +15,10 @@
   JAVAARCH :=ppc
 endif
 
+ifeq ($(DEB_HOST_ARCH_CPU),ppc64el)
+  JAVAARCH :=ppc64le
+endif
+
 ifeq ($(DEB_HOST_ARCH_CPU),sh4)
   JAVAARCH :=sh
 endif

Reply via email to