diff options
author | dholland <dholland@pkgsrc.org> | 2015-11-07 19:20:16 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2015-11-07 19:20:16 +0000 |
commit | 7545d1c3689cc83426b67d7a60ecfddee07a532b (patch) | |
tree | e2111b3d9156b8b8ff5fb09b5fdee0aae6199387 | |
parent | d4e547d1a5bf6f9e8516f4ba938458801ab5529b (diff) | |
download | pkgsrc-7545d1c3689cc83426b67d7a60ecfddee07a532b.tar.gz |
Add workaround for install failure on case-insensitive fs; seen in the
last MacOS PPC build.
-rw-r--r-- | archivers/zoo/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/archivers/zoo/Makefile b/archivers/zoo/Makefile index 756bcc599ac..67f64c6d7ab 100644 --- a/archivers/zoo/Makefile +++ b/archivers/zoo/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.36 2014/10/09 14:05:55 wiz Exp $ +# $NetBSD: Makefile,v 1.37 2015/11/07 19:20:16 dholland Exp $ DISTNAME= zoo-2.10pl1 PKGNAME= zoo-2.10.1 @@ -18,4 +18,8 @@ MAKE_FILE= makefile INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 +# without this installing ploughs on case-insensitive fses +post-extract: + cd ${WRKSRC} && mv Install Install.txt + .include "../../mk/bsd.pkg.mk" |