diff options
author | rillig <rillig@pkgsrc.org> | 2005-12-05 23:55:01 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-12-05 23:55:01 +0000 |
commit | 51cc30a69f6ed85b6e1c747e7d0e7c630f9cc50a (patch) | |
tree | 1390f4897127f87b9dc78eb04234494436dbf1a4 /graphics/blender | |
parent | f3129e07256e493f4c4fbcb6d3b8a8b56805108b (diff) | |
download | pkgsrc-51cc30a69f6ed85b6e1c747e7d0e7c630f9cc50a.tar.gz |
Ran "pkglint --autofix", which corrected some of the quoting issues in
CONFIGURE_ARGS.
Diffstat (limited to 'graphics/blender')
-rw-r--r-- | graphics/blender/options.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/blender/options.mk b/graphics/blender/options.mk index 47f61edfa6e..eb627e2cbc9 100644 --- a/graphics/blender/options.mk +++ b/graphics/blender/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.2 2005/10/05 13:29:49 wiz Exp $ +# $NetBSD: options.mk,v 1.3 2005/12/05 23:55:07 rillig Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.blender PKG_SUPPORTED_OPTIONS= @@ -16,7 +16,7 @@ CONFIGURE_ARGS+= --disable-exppython .endif .if !empty(PKG_OPTIONS:Mogg) -CONFIGURE_ARGS+= --with-ogg=${PREFIX} +CONFIGURE_ARGS+= --with-ogg=${PREFIX:Q} .include "../../multimedia/libogg/buildlink3.mk" .else CONFIGURE_ARGS+= --without-ogg --disable-oggtest @@ -28,7 +28,7 @@ CONFIGURE_ARGS+= --enable-openal .endif .if !empty(PKG_OPTIONS:Mvorbis) -CONFIGURE_ARGS+= --with-vorbis=${PREFIX} +CONFIGURE_ARGS+= --with-vorbis=${PREFIX:Q} .include "../../audio/libvorbis/buildlink3.mk" .else CONFIGURE_ARGS+= --without-vorbis --disable-vorbistest |