diff options
author | rodent <rodent> | 2013-06-09 22:59:13 +0000 |
---|---|---|
committer | rodent <rodent> | 2013-06-09 22:59:13 +0000 |
commit | aa554d1239389ba0141ee5f4824dfb2eec687670 (patch) | |
tree | 67da78f93f4a9664212169989b471efb1627d433 /textproc | |
parent | ca53a9600add5625222803480a972fa3595f0164 (diff) | |
download | pkgsrc-aa554d1239389ba0141ee5f4824dfb2eec687670.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 |