Package: alpine Version: 1.0+dfsg-1 Severity: wishlist Tags: patch User: [EMAIL PROTECTED] Usertags: eabi
Configure.ac in alpine assumes that all linux ports end in linux-gnu, which is not true for arm-eabi port (as well as for uclinux and some other ports). Please relax checks and rerun autoconf. -- "rm -rf" only sounds scary if you don't have backups
diff -ur alpine-1.0+dfsg.old/configure.ac alpine-1.0+dfsg/configure.ac --- alpine-1.0+dfsg.old/configure.ac 2007-12-21 00:32:04.000000000 +0200 +++ alpine-1.0+dfsg/configure.ac 2008-01-08 21:48:39.000000000 +0200 @@ -577,7 +577,7 @@ else dnl preload c-client default locations/options case $host in - *-linux-gnu) + *-linux-gnu*) if test -f /etc/fedora-release -o -f /etc/redhat-release -o -f /etc/redhat_version ; then alpine_SSLTYPE="nopwd" if test -d /etc/pki/tls ; then @@ -1232,7 +1232,7 @@ dnl build from c-client. Most of this will go away when c-client dnl adopts configure case "$host" in - *-linux-gnu) + *-linux-gnu*) alpine_path_delim="/" alpine_mode_readonly="(0600)" if test -f /etc/fedora-release ; then diff -ur alpine-1.0+dfsg.old/debian/changelog alpine-1.0+dfsg/debian/changelog --- alpine-1.0+dfsg.old/debian/changelog 2008-01-08 21:44:03.000000000 +0200 +++ alpine-1.0+dfsg/debian/changelog 2008-01-08 21:49:22.000000000 +0200 @@ -1,3 +1,9 @@ +alpine (1.0+dfsg-1.1) unstable; urgency=low + + * Fix host string armel + + -- riku voipio <[EMAIL PROTECTED]> Tue, 08 Jan 2008 19:48:49 +0000 + alpine (1.0+dfsg-1) unstable; urgency=low * New upstream release. (Closes: #457327)