Commit 74f77f93 authored by Casey Strouse's avatar Casey Strouse

Fix postinstall cleanup

After installing the unzip binaries the manpages were supposed to be removed but
were not due to an incorrect path.
parent 0d71d1ed
......@@ -32,7 +32,7 @@ class Unzip < Package
def self.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"
system "rm -r -f /usr/local/tmp/unzip-man"
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