Commit 4b35769e authored by Damian Montero's avatar Damian Montero Committed by GitHub

Merge pull request #272 from geisesteert/patch-1

Fix package being broken on ARM due to asm error
parents d32b537a 3924aac2
......@@ -22,7 +22,11 @@ class Unzip < Package
def self.build
self.patch
system "make -f unix/Makefile generic"
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