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 /lang/python22/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 'lang/python22/Makefile')
-rw-r--r-- | lang/python22/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lang/python22/Makefile b/lang/python22/Makefile index aa4ee9b356c..03ec4644efc 100644 --- a/lang/python22/Makefile +++ b/lang/python22/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2005/11/16 19:18:58 joerg Exp $ +# $NetBSD: Makefile,v 1.30 2005/12/05 20:50:27 rillig Exp $ # DISTNAME= Python-2.2.3 @@ -17,7 +17,7 @@ CONFLICTS+= python-[0-9]* USE_LANGUAGES= c c++ GNU_CONFIGURE= YES -PTHREAD_OPTS= require +PTHREAD_OPTS+= require .include "../../mk/pthread.buildlink3.mk" .if ${PTHREAD_TYPE} == "pth" CONFIGURE_ARGS+= --with-pth @@ -34,7 +34,7 @@ PLIST_SRC+= ${.CURDIR}/../../lang/python22/PLIST.${OPSYS} PLIST_SRC+= ${.CURDIR}/../../lang/python22/PLIST.common_end .if ${OPSYS} == "Darwin" || ${OPSYS} == "Interix" -PLIST_SUBST+= PY_PLATNAME=${LOWER_OPSYS} +PLIST_SUBST+= PY_PLATNAME=${LOWER_OPSYS:Q} .elif ${OPSYS} == "IRIX" PLIST_SUBST+= PY_PLATNAME=${LOWER_OPSYS:C/\..*//} .elif ${OPSYS} == "SunOS" @@ -43,7 +43,7 @@ PLIST_SUBST+= PY_PLATNAME=sunos${OS_VERSION:C/\..*//} PLIST_SUBST+= PY_PLATNAME=${LOWER_OPSYS}${OS_VERSION:C/\..*//} .endif -PLIST_SUBST+= PY_VER_SUFFIX=${PY_VER_SUFFIX} +PLIST_SUBST+= PY_VER_SUFFIX=${PY_VER_SUFFIX:Q} INSTALL_TARGET= altinstall |