diff options
author | jperkin <jperkin@pkgsrc.org> | 2017-01-03 13:23:01 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2017-01-03 13:23:01 +0000 |
commit | b2c72c7fada41010e5beeed332e23ef2d5e7ff93 (patch) | |
tree | 0afef97b509bb0ade4367b6585a9a9119c9042e7 /textproc/py-vobject | |
parent | 75e1986ea1f9aefbe1614eb290f3526ca149a93d (diff) | |
download | pkgsrc-b2c72c7fada41010e5beeed332e23ef2d5e7ff93.tar.gz |
Use "${MV} || ${TRUE}" and "${RM} -f" consistently in post-install targets.
Diffstat (limited to 'textproc/py-vobject')
-rw-r--r-- | textproc/py-vobject/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/textproc/py-vobject/Makefile b/textproc/py-vobject/Makefile index a50f5ed9d75..fba8b627505 100644 --- a/textproc/py-vobject/Makefile +++ b/textproc/py-vobject/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2016/10/31 16:28:27 wiz Exp $ +# $NetBSD: Makefile,v 1.21 2017/01/03 13:23:04 jperkin Exp $ DISTNAME= vobject-0.9.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -16,7 +16,7 @@ DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six post-install: cd ${DESTDIR}${PREFIX}/bin && \ ${MV} change_tz change_tz-${PYVERSSUFFIX} && \ - ${MV} ics_diff ics_diff-${PYVERSSUFFIX} + ${MV} ics_diff ics_diff-${PYVERSSUFFIX} || ${TRUE} # tests.py is missing in 0.9.3 tarball # https://github.com/eventable/vobject/issues/38 |