Commit 3924aac2 authored by lyxell's avatar lyxell

Add conditional check for architecture

parent 268131df
......@@ -22,7 +22,11 @@ class Unzip < Package
def self.build
self.patch
system "make -f unix/Makefile linux_noasm"
if ARCH == "armv7l"
system "make -f unix/Makefile linux_noasm"
else
system "make -f unix/Makefile generic"
end
end
def self.install
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment