summaryrefslogtreecommitdiff
path: root/lang/py-hy
diff options
context:
space:
mode:
authorjperkin <jperkin>2017-01-03 13:23:01 +0000
committerjperkin <jperkin>2017-01-03 13:23:01 +0000
commitd911e956b9254c4326233d7a093bb1fd2b5be2ba (patch)
tree88dc200a587cac93deef4c7a8289fd9064fd6585 /lang/py-hy
parentcd6f68b0163b43e0670c1c418ae654d17e68e0a7 (diff)
downloadpkgsrc-d911e956b9254c4326233d7a093bb1fd2b5be2ba.tar.gz
Use "${MV} || ${TRUE}" and "${RM} -f" consistently in post-install targets.
Diffstat (limited to 'lang/py-hy')
-rw-r--r--lang/py-hy/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/lang/py-hy/Makefile b/lang/py-hy/Makefile
index bc2a4748e00..6bfcdabbca6 100644
--- a/lang/py-hy/Makefile
+++ b/lang/py-hy/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2016/08/28 15:48:32 wiz Exp $
+# $NetBSD: Makefile,v 1.5 2017/01/03 13:23:03 jperkin Exp $
DISTNAME= hy-0.10.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
@@ -19,11 +19,11 @@ PY_PATCHPLIST= yes
post-install:
${MV} ${DESTDIR}${PREFIX}/bin/hy \
- ${DESTDIR}${PREFIX}/bin/hy${PYVERSSUFFIX}
+ ${DESTDIR}${PREFIX}/bin/hy${PYVERSSUFFIX} || ${TRUE}
${MV} ${DESTDIR}${PREFIX}/bin/hy2py \
- ${DESTDIR}${PREFIX}/bin/hy2py${PYVERSSUFFIX}
+ ${DESTDIR}${PREFIX}/bin/hy2py${PYVERSSUFFIX} || ${TRUE}
${MV} ${DESTDIR}${PREFIX}/bin/hyc \
- ${DESTDIR}${PREFIX}/bin/hyc${PYVERSSUFFIX}
+ ${DESTDIR}${PREFIX}/bin/hyc${PYVERSSUFFIX} || ${TRUE}
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"