Commit 516bfb30 authored by Damian Montero's avatar Damian Montero Committed by GitHub

fixed unzip to remove the man pages (that prevent installation)

parent 80a5957b
......@@ -26,7 +26,9 @@ class Unzip < Package
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "-f", "unix/Makefile", "install"
system "make", "DESTDIR=#{CREW_DEST_DIR}", "MANDIR=/usr/local/tmp/unzip-man", "-f", "unix/Makefile", "install"
#remove the man pages we couldn't install
system "rm -r -f /usr/local/tmp/unzipman"
end
end
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