diff options
author | martti <martti@pkgsrc.org> | 2008-01-09 13:47:42 +0000 |
---|---|---|
committer | martti <martti@pkgsrc.org> | 2008-01-09 13:47:42 +0000 |
commit | 1a7b4fdb6cdf834f55ff0da04febc3ddf73fc4e0 (patch) | |
tree | c1b7724942f7fa3693b00145c29318594812694d /editors/vim | |
parent | bac083b86fe92882a91c77f3ec47f6321a480a76 (diff) | |
download | pkgsrc-1a7b4fdb6cdf834f55ff0da04febc3ddf73fc4e0.tar.gz |
Some "pkglint -Wall" fixes.
Diffstat (limited to 'editors/vim')
-rw-r--r-- | editors/vim/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/vim/Makefile b/editors/vim/Makefile index 10ab8794f50..7d9188b57c7 100644 --- a/editors/vim/Makefile +++ b/editors/vim/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.66 2008/01/03 23:20:50 heinz Exp $ +# $NetBSD: Makefile,v 1.67 2008/01/09 13:47:42 martti Exp $ PKGNAME= vim-${VIM_VERSION}.${VIM_PATCHLEVEL} #PKGREVISION= 1 @@ -23,8 +23,8 @@ TEST_TARGET= check post-install: .for f in rvim rview - ${RM} -f ${DESTDIR:Q}${PREFIX:Q}/bin/${f:Q} - ${LN} -s vim ${DESTDIR:Q}${PREFIX:Q}/bin/${f:Q} + ${RM} -f ${DESTDIR}${PREFIX}/bin/${f} + ${LN} -s vim ${DESTDIR}${PREFIX}/bin/${f} .endfor .include "../../devel/ncurses/buildlink3.mk" |