X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=configure.ac;h=e241602eaa428c3bfc36b29152e4f414baf90af5;hp=f0eba8a3eecdd2e5ed1d9dbb6bb7d94aee5e7153;hb=22528e9bc486cbb6357192bd758c417c61bba955;hpb=349814e9d912c4f372b8fbdfb10b03749911021f diff --git a/configure.ac b/configure.ac index f0eba8a..e241602 100644 --- a/configure.ac +++ b/configure.ac @@ -15,7 +15,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -AC_INIT([libguestfs],[1.0.55]) +AC_INIT([libguestfs],[1.0.56]) AM_INIT_AUTOMAKE([foreign]) AC_CONFIG_MACRO_DIR([m4]) @@ -167,6 +167,18 @@ else test "x$DEBIRF" = "xno" && AC_MSG_ERROR([debirf must be installed]) DIST="DEBIAN" + case $host_cpu in + *86) + DEBIAN_KERNEL_ARCH=486 + ;; + x86_64) + DEBIAN_KERNEL_ARCH=amd64 + ;; + *) + DEBIAN_KERNEL_ARCH=$host_cpu + ;; + esac + AC_SUBST(DEBIAN_KERNEL_ARCH) fi AC_SUBST(DIST) @@ -578,8 +590,8 @@ echo echo "If any optional component is configured 'no' when you expected 'yes'" echo "then you should check the preceeding messages." echo -echo "Please report bugs back to the fedora-virt mailing list:" -echo "http://www.redhat.com/mailman/listinfo/fedora-virt" +echo "Please report bugs back to the mailing list:" +echo "http://www.redhat.com/mailman/listinfo/libguestfs" echo echo "Next you should type 'make' to build the package," echo "then 'make check' to run the tests."