summaryrefslogtreecommitdiff
path: root/lang/python26
diff options
context:
space:
mode:
authorsbd <sbd@pkgsrc.org>2011-11-08 07:30:08 +0000
committersbd <sbd@pkgsrc.org>2011-11-08 07:30:08 +0000
commit9194b538e8397a572cd05c35fbdb824162c1aace (patch)
treea4843f8c87913297f5b60599d7d36833aac0f7d3 /lang/python26
parent80e9cf5c647bec8a7d63697e4b90976e53366854 (diff)
downloadpkgsrc-9194b538e8397a572cd05c35fbdb824162c1aace.tar.gz
Change a unused variable referacne to a fixed string that I missed when
coping the Mac OS X sdk filename handling. Thank to Matthias Rampke in PR#45581 for catching this.
Diffstat (limited to 'lang/python26')
-rw-r--r--lang/python26/distinfo4
-rw-r--r--lang/python26/patches/patch-am4
2 files changed, 4 insertions, 4 deletions
diff --git a/lang/python26/distinfo b/lang/python26/distinfo
index 907711ecdee..32f4ba4689e 100644
--- a/lang/python26/distinfo
+++ b/lang/python26/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.40 2011/10/31 06:50:54 sbd Exp $
+$NetBSD: distinfo,v 1.41 2011/11/08 07:30:08 sbd Exp $
SHA1 (Python-2.6.7.tar.bz2) = 5d35eb746e85fb3deaff8518448137c9b9fb6daa
RMD160 (Python-2.6.7.tar.bz2) = 513e84a7cb76ca876e3803bb03ed558bd0378063
@@ -14,7 +14,7 @@ SHA1 (patch-ad) = a997e39d16a8f0023125362b180d19ee97ab519b
SHA1 (patch-ae) = a6d578b5f12eb42fbbcc11791576d2686a4807d9
SHA1 (patch-ah) = 501d220b41e578402f3400fe88e582aa2408a147
SHA1 (patch-al) = e18800d53de022e4c24055f7d03b69af2837b089
-SHA1 (patch-am) = 154b1d4fd7b5f7767dc383867390aa55d476e824
+SHA1 (patch-am) = 380dfaa8ca90532a52dcca972e34965f6e64fce1
SHA1 (patch-an) = 17b4e17b3b562c29a050e9bb20447084ce82b8ab
SHA1 (patch-ao) = 8c6a156b0f0c2a6d319658477fff348e6a0c3603
SHA1 (patch-ap) = d23a869a449ab9dc166cfa149913b20c9acad9cb
diff --git a/lang/python26/patches/patch-am b/lang/python26/patches/patch-am
index 1327accae0a..8489a42e848 100644
--- a/lang/python26/patches/patch-am
+++ b/lang/python26/patches/patch-am
@@ -1,4 +1,4 @@
-$NetBSD: patch-am,v 1.18 2011/10/31 06:50:54 sbd Exp $
+$NetBSD: patch-am,v 1.19 2011/11/08 07:30:08 sbd Exp $
Disabled modules for normal build:
bsddb
@@ -308,7 +308,7 @@ support building the "nis" and "crypt" modules.
+ for dir in dirs:
+ f = os.path.join(dir, 'ndbm.h')
+ if sys.platform == 'darwin' and is_macosx_sdk_path(dir):
-+ f = os.path.join(sysroot, dir[1:], filename)
++ f = os.path.join(sysroot, dir[1:], 'ndbm.h')
+ if not os.path.exists(f): continue
+
+ ret = 'True'