diff options
author | sbd <sbd> | 2012-05-10 09:07:19 +0000 |
---|---|---|
committer | sbd <sbd> | 2012-05-10 09:07:19 +0000 |
commit | 7d4fb3e5ed4997b61d36f6ed0d42b80264e93284 (patch) | |
tree | 9c871fb3a36a7de50cc4efb70bcb427598ef3af8 /lang/python32 | |
parent | 9d5c4455bf2a9155a52e9b7cd1b63da12e223997 (diff) | |
download | pkgsrc-7d4fb3e5ed4997b61d36f6ed0d42b80264e93284.tar.gz |
"sys.platform is now always 'linux2' on Linux", so set PY_PLATNAME to it.
Diffstat (limited to 'lang/python32')
-rw-r--r-- | lang/python32/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lang/python32/Makefile b/lang/python32/Makefile index b068a7a9413..da0505db1b6 100644 --- a/lang/python32/Makefile +++ b/lang/python32/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2012/05/06 13:12:09 obache Exp $ +# $NetBSD: Makefile,v 1.2 2012/05/10 09:07:19 sbd Exp $ .include "dist.mk" @@ -42,6 +42,8 @@ PY_PLATNAME= ${LOWER_OPSYS:C/\..*//} PY_PLATNAME= sunos${OS_VERSION:C/\..*//} .elif ${OPSYS} == "HPUX" PY_PLATNAME= hp-ux11 +.elif ${OPSYS} == "Linux" +PY_PLATNAME= linux2 .else PY_PLATNAME= ${LOWER_OPSYS}${OS_VERSION:C/\..*//} .endif |