Skip to content

Commit

Permalink
Fix arch suffix for 64 bit
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Aug 19, 2012
1 parent 599d593 commit 4bcd692
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion attributes/ghc.rb
@@ -1,4 +1,4 @@
default[:ghc] = {
:version => "7.4.1",
:arch => kernel['machine'] =~ /x86_64/ ? "amd64" : "i386"
:arch => kernel['machine'] =~ /x86_64/ ? "x86_64" : "i386"
}

0 comments on commit 4bcd692

Please sign in to comment.