diff options
Diffstat (limited to 'devel/ncurses/Makefile')
-rw-r--r-- | devel/ncurses/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/devel/ncurses/Makefile b/devel/ncurses/Makefile index 5cd4a8a794f..eccfd1ea901 100644 --- a/devel/ncurses/Makefile +++ b/devel/ncurses/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.74 2006/11/05 17:49:34 joerg Exp $ +# $NetBSD: Makefile,v 1.75 2007/01/08 11:01:05 adam Exp $ .include "Makefile.common" -PKGREVISION= 1 COMMENT= CRT screen handling and optimization package INSTALLATION_DIRS= share/examples @@ -20,10 +19,10 @@ SUBST_SED.ti+= -e '/^screen.teraterm|/,/^$$/d' post-configure: cd ${WRKSRC}/man; \ for f in *.1m; do \ - ${MV} -f $${f} `${BASENAME} $${f} .1m`.1; \ + mv -f $${f} `${BASENAME} $${f} .1m`.1; \ done; \ for f in *.3x; do \ - ${MV} -f $${f} `${BASENAME} $${f} .3x`.3; \ + mv -f $${f} `${BASENAME} $${f} .3x`.3; \ done post-install: |