diff options
author | schwarz <schwarz@pkgsrc.org> | 2006-01-22 21:39:33 +0000 |
---|---|---|
committer | schwarz <schwarz@pkgsrc.org> | 2006-01-22 21:39:33 +0000 |
commit | 381ee5013bd5971043eb299a68939c06e7642e83 (patch) | |
tree | ff322fba9757254ffbab4b9bf60883fefdb8bbcd /chat/icb | |
parent | ac2dc7fef2c52e79c63816bb6343fb56143f2af7 (diff) | |
download | pkgsrc-381ee5013bd5971043eb299a68939c06e7642e83.tar.gz |
added -f option to rm command to ensure it works even if the archive gets
unpacked without user write permissions for the file to be removed.
Diffstat (limited to 'chat/icb')
-rw-r--r-- | chat/icb/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chat/icb/Makefile b/chat/icb/Makefile index 6ce33807cfa..1370b37779c 100644 --- a/chat/icb/Makefile +++ b/chat/icb/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2005/12/14 13:53:24 joerg Exp $ +# $NetBSD: Makefile,v 1.13 2006/01/22 21:39:33 schwarz Exp $ # # Note: The file ftp://ftp.icb.net/pub/icb/icb-0.9grok2.tar.gz is way @@ -26,7 +26,7 @@ BUILDLINK_TRANSFORM+= rm:-ltermcap INSTALLATION_DIRS= bin libdata libdata/icb post-extract: - ${RM} ${WRKSRC}/tcl/string.h + ${RM} -f ${WRKSRC}/tcl/string.h do-configure: ${SED} -e "s|@PREFIX@|${PREFIX}|g" ${FILESDIR}/config >${WRKSRC}/config |