diff options
author | rodent <rodent@pkgsrc.org> | 2013-06-09 22:59:13 +0000 |
---|---|---|
committer | rodent <rodent@pkgsrc.org> | 2013-06-09 22:59:13 +0000 |
commit | 0e51e5ea0a9947850676b396c61d237b3afa726c (patch) | |
tree | 67da78f93f4a9664212169989b471efb1627d433 /textproc | |
parent | e92ba7cc888e8b0dc32a932bf984f217de1f6f35 (diff) | |
download | pkgsrc-0e51e5ea0a9947850676b396c61d237b3afa726c.tar.gz |
Fix hardcoded ${INSTALL} path with SUBST. Likely fixes install failure on
SunOS.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/ispell-ku/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/textproc/ispell-ku/Makefile b/textproc/ispell-ku/Makefile index 3ba82fd0f04..4af4b5d5e54 100644 --- a/textproc/ispell-ku/Makefile +++ b/textproc/ispell-ku/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2013/04/24 03:32:37 rodent Exp $ +# $NetBSD: Makefile,v 1.2 2013/06/09 22:59:13 rodent Exp $ # DISTNAME= ispell-ku-0.20 @@ -19,6 +19,7 @@ SUBST_FILES.paths= Makefile SUBST_MESSAGE.paths= Fixing paths. SUBST_SED.paths= -e "s|/usr/local|${PREFIX}|1" SUBST_SED.paths+= -e "s|/ispell||1" +SUBST_SED.paths+= -e "s|/usr/bin/install|${INSTALL}|1" SUBST_STAGE.paths= pre-configure DEPENDS+= ispell-[0-9]*:../../textproc/ispell |