Package: live-helper Version: 1.0~a40-1 Tags: patch When trying to run live-helper on an arm architecture, I found that Check_crossarchitecture incorrectly recognises it as a cross-build. The attached patch fixes this.
Thanks, Bas -- I encourage people to send encrypted e-mail (see http://www.gnupg.org). If you have problems reading my e-mail, use a better reader. Please send the central message of e-mails as plain text in the message body, not as HTML and definitely not as MS Word. Please do not use the MS Word format for attachments either. For more information, see http://pcbcn10.phys.rug.nl/e-mail.html
--- /usr/share/live-helper/functions/architecture.sh 2008-03-11 10:26:43.000000000 +0100
+++ architecture.sh 2008-03-25 23:11:49.000000000 +0100
@@ -47,6 +47,9 @@ Check_crossarchitecture ()
powerpc|ppc64)
CROSS="powerpc ppc64"
;;
+ *)
+ CROSS="${HOST}"
+ ;;
esac
Check_architecture "${CROSS}"
signature.asc
Description: Digital signature
_______________________________________________ debian-live-devel mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/debian-live-devel

