diff options
author | jschauma <jschauma> | 2003-04-21 14:22:57 +0000 |
---|---|---|
committer | jschauma <jschauma> | 2003-04-21 14:22:57 +0000 |
commit | aa3c921182c52860b381851633430b0dd89d4882 (patch) | |
tree | e39cac64b295a85e0e415f9eed0ceb9ca2195b45 | |
parent | 30a12e81ac9c6f7a8b1ff8635514e487fcfb4219 (diff) | |
download | pkgsrc-aa3c921182c52860b381851633430b0dd89d4882.tar.gz |
Quote the variable when passing to MAKE_ENV.
-rw-r--r-- | textproc/biblook/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/textproc/biblook/Makefile b/textproc/biblook/Makefile index 1b1ff423a9b..76681668238 100644 --- a/textproc/biblook/Makefile +++ b/textproc/biblook/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2003/03/29 12:42:35 jmmv Exp $ +# $NetBSD: Makefile,v 1.3 2003/04/21 14:22:57 jschauma Exp $ # DISTNAME= biblook @@ -13,7 +13,7 @@ COMMENT= indexing and searching tools for BibTeX bibliography databases .include "../../mk/bsd.prefs.mk" -MAKE_FLAGS= CC=${CC} +MAKE_FLAGS= CC="${CC}" # override definitions in the package's Makefile via command line .if ${OPSYS} == "NetBSD" |