diff options
author | ryoon <ryoon@pkgsrc.org> | 2011-09-20 13:19:36 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2011-09-20 13:19:36 +0000 |
commit | 6a2d422a3954faa28169c138be34a29ac6de10d6 (patch) | |
tree | 9c776ad8ddad8e988035c1fc6176b61917763ffb /shells/zsh | |
parent | 4300d5d0264c6a202abadc290c1185cb29f0097a (diff) | |
download | pkgsrc-6a2d422a3954faa28169c138be34a29ac6de10d6.tar.gz |
Add workaround to fix broken "make package" on Darwin 11.0.1.
Diffstat (limited to 'shells/zsh')
-rw-r--r-- | shells/zsh/Makefile.common | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/shells/zsh/Makefile.common b/shells/zsh/Makefile.common index 91f48d1631b..f9442ea8a10 100644 --- a/shells/zsh/Makefile.common +++ b/shells/zsh/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.61 2011/07/30 11:42:42 ryoon Exp $ +# $NetBSD: Makefile.common,v 1.62 2011/09/20 13:19:36 ryoon Exp $ # used by shells/zsh/Makefile # used by shells/zsh-current/Makefile @@ -28,6 +28,10 @@ PKG_INSTALLATION_TYPES= overwrite pkgviews .include "../../mk/bsd.prefs.mk" +.if ${OPSYS} == "Darwin" +CONFIGURE_ENV+= INSTALL_PROGRAM=${INSTALL_DATA:Q} +.endif + # Handle any PKG_OPTIONS that this package might have. .sinclude "options.mk" |