diff options
author | rillig <rillig@pkgsrc.org> | 2005-12-05 20:49:47 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-12-05 20:49:47 +0000 |
commit | b71a1d488b6b45e0a968a4c149990c25b6a09215 (patch) | |
tree | dac5b1dd14794d86b061d26b9503adb2552ed3f8 /misc/koffice/Makefile | |
parent | 624eed58928f83676fbd7ca01a5f6974bb2cce2a (diff) | |
download | pkgsrc-b71a1d488b6b45e0a968a4c149990c25b6a09215.tar.gz |
Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some
other changes are outlined in
http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
Diffstat (limited to 'misc/koffice/Makefile')
-rw-r--r-- | misc/koffice/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/koffice/Makefile b/misc/koffice/Makefile index 8b162926063..81236553e46 100644 --- a/misc/koffice/Makefile +++ b/misc/koffice/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.67 2005/11/25 21:23:15 wiz Exp $ +# $NetBSD: Makefile,v 1.68 2005/12/05 20:50:39 rillig Exp $ DISTNAME= koffice-1.4.2 PKGREVISION= 1 @@ -26,8 +26,8 @@ GCC_REQD+= 2.95.3 PTHREAD_OPTS+= require PYTHON_VERSIONS_ACCEPTED= 24 23 # needs shared library -CONFIGURE_ENV+= PYTHONDIR="${LOCALBASE}" -CONFIGURE_ENV+= PYVERSSUFFIX="${PYVERSSUFFIX}" +CONFIGURE_ENV+= PYTHONDIR=${LOCALBASE:Q} +CONFIGURE_ENV+= PYVERSSUFFIX=${PYVERSSUFFIX:Q} REPLACE_PERL+= lib/store/fix_storage.pl REPLACE_PERL+= admin/config.pl |