This email list is read-only.  Emails sent to this list will be discarded
----------------------------------
 bitbake-dev/lib/bb/fetch/wget.py |    4 ++--
 bitbake/lib/bb/fetch/wget.py     |    4 ++--
 meta/packages/pam/pam_1.0.2.bb   |    5 +++--
 3 files changed, 7 insertions(+), 6 deletions(-)

New commits:
commit 510d5d7f4d0fab6af6f924de92f8db21c42b3f52
Author: Richard Purdie <[EMAIL PROTECTED]>
Date:   Tue Nov 4 21:11:58 2008 +0000

    bitbake wget.py: Fix problem with empty proxy variables

commit 973bba1edee9211270ec150c8b635563a9f50255
Author: Richard Purdie <[EMAIL PROTECTED]>
Date:   Tue Nov 4 21:11:27 2008 +0000

    pam: Fix use of binary built with the native compiler


Diff in this email is a maximum of 400 lines.
diff --git a/bitbake-dev/lib/bb/fetch/wget.py b/bitbake-dev/lib/bb/fetch/wget.py
index 75357d5..0008a28 100644
--- a/bitbake-dev/lib/bb/fetch/wget.py
+++ b/bitbake-dev/lib/bb/fetch/wget.py
@@ -72,14 +72,14 @@ class Wget(Fetch):
             ftpproxy = None
             if uri_type == 'http':
                 httpproxy = data.getVar("HTTP_PROXY", d, True)
-                httpproxy_ignore = data.getVar("HTTP_PROXY_IGNORE", d, 
True).split()
+                httpproxy_ignore = (data.getVar("HTTP_PROXY_IGNORE", d, True) 
or "").split()
                 for p in httpproxy_ignore:
                     if uri_host.endswith(p):
                         httpproxy = None
                         break
             if uri_type == 'ftp':
                 ftpproxy = data.getVar("FTP_PROXY", d, True)
-                ftpproxy_ignore = data.getVar("HTTP_PROXY_IGNORE", d, 
True).split()
+                ftpproxy_ignore = (data.getVar("HTTP_PROXY_IGNORE", d, True) 
or "").split()
                 for p in ftpproxy_ignore:
                     if uri_host.endswith(p):
                         ftpproxy = None
diff --git a/bitbake/lib/bb/fetch/wget.py b/bitbake/lib/bb/fetch/wget.py
index 75357d5..0008a28 100644
--- a/bitbake/lib/bb/fetch/wget.py
+++ b/bitbake/lib/bb/fetch/wget.py
@@ -72,14 +72,14 @@ class Wget(Fetch):
             ftpproxy = None
             if uri_type == 'http':
                 httpproxy = data.getVar("HTTP_PROXY", d, True)
-                httpproxy_ignore = data.getVar("HTTP_PROXY_IGNORE", d, 
True).split()
+                httpproxy_ignore = (data.getVar("HTTP_PROXY_IGNORE", d, True) 
or "").split()
                 for p in httpproxy_ignore:
                     if uri_host.endswith(p):
                         httpproxy = None
                         break
             if uri_type == 'ftp':
                 ftpproxy = data.getVar("FTP_PROXY", d, True)
-                ftpproxy_ignore = data.getVar("HTTP_PROXY_IGNORE", d, 
True).split()
+                ftpproxy_ignore = (data.getVar("HTTP_PROXY_IGNORE", d, True) 
or "").split()
                 for p in ftpproxy_ignore:
                     if uri_host.endswith(p):
                         ftpproxy = None
diff --git a/meta/packages/pam/pam_1.0.2.bb b/meta/packages/pam/pam_1.0.2.bb
index f80aa15..2a91414 100644
--- a/meta/packages/pam/pam_1.0.2.bb
+++ b/meta/packages/pam/pam_1.0.2.bb
@@ -1,7 +1,8 @@
 HOMEPAGE = "http://www.kernel.org/pub/linux/libs/pam/";
-PR = "r6"
+PR = "r7"
 
-SRC_URI = 
"http://www.kernel.org/pub/linux/libs/pam/library/Linux-PAM-1.0.2.tar.bz2";
+SRC_URI = 
"http://www.kernel.org/pub/linux/libs/pam/library/Linux-PAM-1.0.2.tar.bz2 \
+           file://disable_crossbinary.patch;patch=1 "
 
 EXTRA_OECONF = "--with-db-uniquename=_pam \
                  --includedir=${includedir}/security \
_______________________________________________
Commits mailing list
[email protected]
https://lists.moblin.org/mailman/listinfo/commits

Reply via email to