diff options
author | dholland <dholland> | 2015-11-07 19:20:16 +0000 |
---|---|---|
committer | dholland <dholland> | 2015-11-07 19:20:16 +0000 |
commit | c4efc2dfcd23678b942c40a72a6efc0e5e97b572 (patch) | |
tree | e2111b3d9156b8b8ff5fb09b5fdee0aae6199387 /archivers | |
parent | e7532ae0070845ec26dc58f870cbb370e6e9f764 (diff) | |
download | pkgsrc-c4efc2dfcd23678b942c40a72a6efc0e5e97b572.tar.gz |
Add workaround for install failure on case-insensitive fs; seen in the
last MacOS PPC build.
Diffstat (limited to 'archivers')
-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" |