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,8 +22,12 @@ class Unzip < Package
def self.build
self.patch
if ARCH == "armv7l"
system "make -f unix/Makefile linux_noasm"
else
system "make -f unix/Makefile generic"
end
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "MANDIR=/usr/local/tmp/unzip-man", "-f", "unix/Makefile", "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