From: Patrick Schleizer Date: Thu, 20 Feb 2014 22:45:16 +0000 (+0000) Subject: It is not possible to build amd64 on i386. Break when the user attempts to do this. X-Git-Tag: v0.60~5 X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=commitdiff_plain;h=134498c077007fa91c198a0fe6354466cb6a5ae7;hp=7ec9ddcb8c901ce700b2a9a216f47de95f5a274d It is not possible to build amd64 on i386. Break when the user attempts to do this. --- diff --git a/grml-debootstrap b/grml-debootstrap index 0c0df3f..147465a 100755 --- a/grml-debootstrap +++ b/grml-debootstrap @@ -792,6 +792,16 @@ else fi # }}} +# It is not possible to build amd64 on i686. {{{ +CURRENT_ARCH="$(uname -m)" +if [ "$CURRENT_ARCH" != "x86_64" ] ; then + if [ "$ARCH" = "amd64" ] ; then + eerror "It is not possible to build amd64 on $CURRENT_ARCH." ; eend 1 + bailout 1 + fi +fi +# }}} + checkconfiguration # finally make sure at least $TARGET is set [the partition for the new system] {{{