Package: muscleframework Version: 1.1.6-4 Severity: important Tags: patch Justification: fails to build from source
Build fails on armel because configure script does not recognize the triplet arm-linux-gnueabi. Attached patch fixes this by relaxing the target matching (accept linux-gnu* rather than exactly linux-gnu). Paul -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: armel (armv5tel) Kernel: Linux 2.6.24-1-iop32x Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Shell: /bin/sh linked to /bin/dash
diff -ur clean/MCardPlugin/configure muscleframework-1.1.6/MCardPlugin/configure --- clean/MCardPlugin/configure 2006-11-25 20:50:21.000000000 +0000 +++ muscleframework-1.1.6/MCardPlugin/configure 2008-02-15 02:52:54.000000000 +0000 @@ -2522,7 +2522,7 @@ case "${build_os}" in - linux-gnu) arch=linux ;; + linux-gnu*) arch=linux ;; *bsd*) arch=bsd ;; *darwin*) arch=darwin ;; *solaris*) arch=solaris ;; diff -ur clean/MCardPlugin/configure.in muscleframework-1.1.6/MCardPlugin/configure.in --- clean/MCardPlugin/configure.in 2006-11-25 20:50:20.000000000 +0000 +++ muscleframework-1.1.6/MCardPlugin/configure.in 2008-02-15 02:52:27.000000000 +0000 @@ -15,7 +15,7 @@ dnl Select OS specific versions of source files. case "${build_os}" in - linux-gnu) arch=linux ;; + linux-gnu*) arch=linux ;; *bsd*) arch=bsd ;; *darwin*) arch=darwin ;; *solaris*) arch=solaris ;;