diff options
author | epg <epg> | 2005-04-22 17:54:41 +0000 |
---|---|---|
committer | epg <epg> | 2005-04-22 17:54:41 +0000 |
commit | 1bca6b14384d8caaaf335d271ed963f60e309834 (patch) | |
tree | b76ed57b422e43721594734173cc4f3f301d308a /devel | |
parent | e29e6549faf48d239fb43dfb5ca2d671eb57805d (diff) | |
download | pkgsrc-1bca6b14384d8caaaf335d271ed963f60e309834.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 \ |