Comment 3 for bug 779812

Revision history for this message
Scott Moser (smoser) wrote :

I've just now fixed this in cloud-utils trunk http://bazaar.launchpad.net/~ubuntu-on-ec2/ubuntu-on-ec2/cloud-utils/revision/103
The diff looks like:

-[ $arch = "amd64" ] && iarch=x86_64 || iarch=i386
+[ "$arch" = "amd64" ] && iarch="x86_64" || iarch="${arch}"

That is surely what I had originally intended to do, basically to just alias "amd64" to "x86_64".