diff options
author | mycroft <mycroft@pkgsrc.org> | 2000-04-16 07:31:12 +0000 |
---|---|---|
committer | mycroft <mycroft@pkgsrc.org> | 2000-04-16 07:31:12 +0000 |
commit | a8fe7c7140e242cd6f9594cf858567c59960b215 (patch) | |
tree | e72285c3e1248804d525a0910e254e3787f793cf /editors/vim-share | |
parent | ce88ba036d4dd607a9b28502d082fd1b72363636 (diff) | |
download | pkgsrc-a8fe7c7140e242cd6f9594cf858567c59960b215.tar.gz |
Need a ./ before ${CONFIGURE_SCRIPT}.
Diffstat (limited to 'editors/vim-share')
-rw-r--r-- | editors/vim-share/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/editors/vim-share/Makefile b/editors/vim-share/Makefile index 66b85d643ed..78fb5ed8e70 100644 --- a/editors/vim-share/Makefile +++ b/editors/vim-share/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2000/03/27 08:54:55 tron Exp $ +# $NetBSD: Makefile,v 1.4 2000/04/16 07:31:12 mycroft Exp $ .include "Makefile.common" @@ -12,12 +12,12 @@ INSTALL_TARGET= installvimhelp installhelplinks installmacros \ installtutor installtools post-configure: - cd ${WRKSRC}/ctags ; ${CONFIGURE_ENV} ${CONFIGURE_SCRIPT} \ + cd ${WRKSRC}/ctags; ${CONFIGURE_ENV} ./${CONFIGURE_SCRIPT} \ ${CONFIGURE_ARGS} do-build: - cd ${WRKSRC}/ctags ; ${MAKE} - cd ${WRKSRC}/xxd ; CC="${CC}" CFLAGS="${CFLAGS}" ${MAKE} \ + cd ${WRKSRC}/ctags; ${MAKE} + cd ${WRKSRC}/xxd; CC="${CC}" CFLAGS="${CFLAGS}" ${MAKE} \ -f Makefile.unix .include "../../mk/bsd.pkg.mk" |