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 | 21ba7816c7faef1375c3c2f54f5b1ebf1ef0dfa8 (patch) | |
tree | 67da78f93f4a9664212169989b471efb1627d433 | |
parent | 59d7f78e5de7316113c584f71b4e387c3238f22e (diff) | |
download | pkgsrc-21ba7816c7faef1375c3c2f54f5b1ebf1ef0dfa8.tar.gz |
Fix hardcoded ${INSTALL} path with SUBST. Likely fixes install failure on
SunOS.
-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 |