diff options
author | epg <epg> | 2005-04-22 17:54:41 +0000 |
---|---|---|
committer | epg <epg> | 2005-04-22 17:54:41 +0000 |
commit | 932577cf81e79cd6b81e3587246a5a812e167b67 (patch) | |
tree | b76ed57b422e43721594734173cc4f3f301d308a /devel | |
parent | 2e5410f5a6f46c065361430d0b9d9b81ca7d362f (diff) | |
download | pkgsrc-932577cf81e79cd6b81e3587246a5a812e167b67.tar.gz |
Use ${RM} -f to remove *.a and *.la from libsvn (PR #30031). This
may not be the right fix, but i can't reproduce the problem yet
(submitter says it's new in NetBSD 2.0.2).
Diffstat (limited to 'devel')
-rw-r--r-- | devel/py-subversion/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/py-subversion/Makefile b/devel/py-subversion/Makefile index 3365bd40b60..27754874a47 100644 --- a/devel/py-subversion/Makefile +++ b/devel/py-subversion/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2004/12/03 15:14:55 wiz Exp $ +# $NetBSD: Makefile,v 1.13 2005/04/22 17:54:41 epg Exp $ PKGNAME= ${PYPKGPREFIX}-subversion-${SVNVER} COMMENT= Python bindings and tools for Subversion @@ -25,8 +25,8 @@ post-patch: ${CP} ${FILESDIR}/build-outputs.mk ${WRKSRC}/build-outputs.mk post-install: - ${RM} ${LOCALBASE}/${PYSITELIB}/libsvn/*.a - ${RM} ${LOCALBASE}/${PYSITELIB}/libsvn/*.la + ${RM} -f ${LOCALBASE}/${PYSITELIB}/libsvn/*.a + ${RM} -f ${LOCALBASE}/${PYSITELIB}/libsvn/*.la ${INSTALL_DATA_DIR} ${SVNEXAMPLES}/python ${INSTALL_DATA} ${WRKSRC}/tools/examples/*.py ${SVNEXAMPLES}/python ${INSTALL_DATA} ${WRKSRC}/tools/hook-scripts/mailer/mailer.py \ |