pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/py-subversion Use ${RM} -f to remove *.a and *.l...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/844088608318
branches:  trunk
changeset: 492920:844088608318
user:      epg <epg%pkgsrc.org@localhost>
date:      Fri Apr 22 17:54:41 2005 +0000

description:
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:

 devel/py-subversion/Makefile |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (20 lines):

diff -r d27e254055a7 -r 844088608318 devel/py-subversion/Makefile
--- a/devel/py-subversion/Makefile      Fri Apr 22 15:55:59 2005 +0000
+++ b/devel/py-subversion/Makefile      Fri Apr 22 17:54:41 2005 +0000
@@ -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 @@
        ${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 \



Home | Main Index | Thread Index | Old Index