diff options
author | dholland <dholland@pkgsrc.org> | 2015-11-07 19:11:19 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2015-11-07 19:11:19 +0000 |
commit | da36b44e1fae0e987af2f5a0ab1e49f41757015b (patch) | |
tree | 4efcb18b908f74269b559100a09376fb6b78d7e6 /archivers/star | |
parent | 427b8a31fb41e37c06e4c32d162369246e63512a (diff) | |
download | pkgsrc-da36b44e1fae0e987af2f5a0ab1e49f41757015b.tar.gz |
Add workaround for install failure on case-insensitive fs; seen in the
last MacOS PPC build.
Diffstat (limited to 'archivers/star')
-rw-r--r-- | archivers/star/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/archivers/star/Makefile b/archivers/star/Makefile index dad789ec4d2..343638456d8 100644 --- a/archivers/star/Makefile +++ b/archivers/star/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.33 2014/12/22 01:16:34 mef Exp $ +# $NetBSD: Makefile,v 1.34 2015/11/07 19:11:19 dholland Exp $ # DISTNAME= star-1.4.3 @@ -22,6 +22,10 @@ MAKE_FLAGS+= MANDIR=${PKGMANDIR} MAKE_ENV+= CCOM=gcc .endif +# without this installing ploughs on case-insensitive fses +post-extract: + cd ${WRKSRC} && mv INSTALL INSTALL.txt + pre-build: set -e; \ cd ${WRKSRC}/RULES && for i in arm mipsel x86_64 sparc64 powerpc; do \ |