From c4fe54585c89b832df0ff99037f07e4a49b54568 Mon Sep 17 00:00:00 2001 From: Roland Illig Date: Sat, 7 Aug 2004 11:27:57 +0000 Subject: [PATCH] Fixed installation bug when there are extensions installed (rmdir || true). --- mc/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mc/Makefile b/mc/Makefile index ca690a2f3f..6cb1cbc071 100644 --- a/mc/Makefile +++ b/mc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2004/05/12 15:22:49 thomasklausner Exp $ +# $NetBSD: Makefile,v 1.6 2004/08/07 11:27:57 rillig Exp $ DISTNAME= mc-4.6.0 CATEGORIES= sysutils @@ -22,7 +22,7 @@ PLIST_SRC+= ${PKGDIR}/PLIST.cons.saver # remove dir if no extensions were installed there post-install: - @${RMDIR} ${PREFIX}/lib/mc 2>/dev/null + @${RMDIR} ${PREFIX}/lib/mc 2>/dev/null || ${TRUE} # we need working e2fsprogs and gpm packages first CONFIGURE_ARGS= --prefix=${PREFIX} \