summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsbd <sbd@pkgsrc.org>2012-12-25 23:48:47 +0000
committersbd <sbd@pkgsrc.org>2012-12-25 23:48:47 +0000
commitbb3634194225c9eb6050f1e06c1c778b62afa905 (patch)
tree623fe13cb6a8b3c4b1a0173e1f2a7596aea8383f
parent630fadac21d0a28cf6943bb42acaa9e17d508ba0 (diff)
downloadpkgsrc-bb3634194225c9eb6050f1e06c1c778b62afa905.tar.gz
The PY_PLATNAME on Linux is now 'linux'.
-rw-r--r--lang/python33/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/python33/Makefile b/lang/python33/Makefile
index d06e70cecc0..1bf59421e64 100644
--- a/lang/python33/Makefile
+++ b/lang/python33/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2012/12/25 23:47:39 sbd Exp $
+# $NetBSD: Makefile,v 1.5 2012/12/25 23:48:47 sbd Exp $
.include "dist.mk"
@@ -43,7 +43,7 @@ PY_PLATNAME= sunos${OS_VERSION:C/\..*//}
.elif ${OPSYS} == "HPUX"
PY_PLATNAME= hp-ux11
.elif ${OPSYS} == "Linux"
-PY_PLATNAME= linux2
+PY_PLATNAME= linux
.else
PY_PLATNAME= ${LOWER_OPSYS}${OS_VERSION:C/\..*//}
.endif
@@ -52,7 +52,7 @@ PLIST_SUBST+= PY_PLATNAME=${PY_PLATNAME:Q}
# ossaudiodev is only available on x86 for the following platforms
PLIST_VARS+= oss
.if (${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64") && \
- (${PY_PLATNAME} == "linux2" || ${OPSYS} == "FreeBSD")
+ (${PY_PLATNAME} == "linux" || ${OPSYS} == "FreeBSD")
PLIST.oss= yes
.endif