Fix ARCH detection [GH-7]
This commit is contained in:
parent
52f5cf7447
commit
2c42b460c7
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -2,8 +2,8 @@ UBUNTU_BOXES= precise quantal raring saucy trusty
|
|||
DEBIAN_BOXES= squeeze wheezy sid jessie
|
||||
TODAY=$(shell date -u +"%Y-%m-%d")
|
||||
|
||||
# Replace i686 with i386
|
||||
ARCH=$(shell uname -m | sed -e "s/68/38/")
|
||||
# Replace i686 with i386 and x86_64 with amd64
|
||||
ARCH=$(shell uname -m | sed -e "s/68/38/" | sed -e "s/x86_64/amd64/")
|
||||
|
||||
default:
|
||||
|
||||
|
|
Loading…
Reference in a new issue