diff options
author | reed <reed@pkgsrc.org> | 2005-08-19 19:59:59 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2005-08-19 19:59:59 +0000 |
commit | d3a441c96a4dd9c5e72598555009af47358e05c2 (patch) | |
tree | 9939836198966dee4648d3f0737d638965e5052c /databases/openldap | |
parent | 708c6057b94c194541721eb38026f1d5d37c03c4 (diff) | |
download | pkgsrc-d3a441c96a4dd9c5e72598555009af47358e05c2.tar.gz |
Use -f to force removal of the default files.
My error was:
/bin/rm /home/reed/pkg/share/examples/openldap/schema/corba.schema.default
override r--r--r-- reed/2022 for /home/reed/pkg/share/examples/openldap/schema/corba.schema.default?
(For several files it was interactive to remove.)
This is when doing non-privileged builds.
(An alternative to this is to make it install the *default files with
NONBINMODE in the first place.)
Diffstat (limited to 'databases/openldap')
-rw-r--r-- | databases/openldap/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/openldap/Makefile b/databases/openldap/Makefile index 8441aa7400d..222b44ca0fb 100644 --- a/databases/openldap/Makefile +++ b/databases/openldap/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.100 2005/08/03 21:01:40 jlam Exp $ +# $NetBSD: Makefile,v 1.101 2005/08/19 19:59:59 reed Exp $ DISTNAME= openldap-2.2.27 PKGREVISION= 1 @@ -99,7 +99,7 @@ INSTALL_MAKE_FLAGS= ${MAKE_FLAGS} sysconfdir=${EGDIR:Q} post-install: .for _file_ in ${CNFS} ${CNFS_PERMS} ${CHMOD} ${SHAREMODE} ${EGDIR}/${_file_} - ${RM} ${EGDIR}/${_file_}.default + ${RM} -f ${EGDIR}/${_file_}.default .endfor .include "../../mk/bsd.pkg.mk" |