diff options
author | wiz <wiz> | 2000-02-27 04:43:33 +0000 |
---|---|---|
committer | wiz <wiz> | 2000-02-27 04:43:33 +0000 |
commit | 7e7c9cf1572296c08d1489dce2fc5c21805e67e4 (patch) | |
tree | 15f046bf973d7f2b38fb044b226456a8227b508e | |
parent | 6994c8ab58e0860b42f5551101d916075c815304 (diff) | |
download | pkgsrc-7e7c9cf1572296c08d1489dce2fc5c21805e67e4.tar.gz |
quote ${CFLAGS}; should fix pkg/9490
-rw-r--r-- | editors/vim-share/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/editors/vim-share/Makefile b/editors/vim-share/Makefile index 6add2a1e4bd..00e2d3d5cd4 100644 --- a/editors/vim-share/Makefile +++ b/editors/vim-share/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 1999/12/21 13:20:32 pooka Exp $ +# $NetBSD: Makefile,v 1.2 2000/02/27 04:43:33 wiz Exp $ .include "Makefile.common" @@ -17,6 +17,7 @@ post-configure: do-build: cd ${WRKSRC}/ctags ; ${MAKE} - cd ${WRKSRC}/xxd ; CC=${CC} CFLAGS=${CFLAGS} ${MAKE} -f Makefile.unix + cd ${WRKSRC}/xxd ; CC="${CC}" CFLAGS="${CFLAGS}" ${MAKE} \ + -f Makefile.unix .include "../../mk/bsd.pkg.mk" |