Package: linuxlogo
Version: 4.14-4
Severity: serious
Tags: patch
Justification: no longer builds from source


Build fails on arm with:
make[3]: Entering directory
`/build/buildd/linuxlogo-4.14/libsysinfo-0.1.0/Linux'
make[3]: *** No rule to make target `armv4l', needed by `cpuinfo.o'.  Stop.

Where "armv4l" varies depending on the exact machine.

Patch below fixes the makefile to recognice all arm variants from uname -m.

--- libsysinfo-0.1.0/Linux/Makefile.clean       2006-11-05 00:13:03
+++ libsysinfo-0.1.0/Linux/Makefile     2006-11-05 00:23:23
@@ -20,6 +20,9 @@
 ifeq ($(ARCH),parisc64)
    ARCH := parisc
 endif
+ifeq ($(findstring arm,$(ARCH)),arm)
+   ARCH := arm
+endif

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: arm (armv5tejl)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-rc7
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to