Skip to content

Commit

Permalink
Fix ARCH detection [GH-7]
Browse files Browse the repository at this point in the history
  • Loading branch information
fgrehm committed May 3, 2014
1 parent 52f5cf7 commit 2c42b46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down

0 comments on commit 2c42b46

Please sign in to comment.