On Sat, 2013-06-22 at 12:49 -0700, Steve Langasek wrote:
> Control: tags -1 wontfix
> 
> On Sat, Jun 22, 2013 at 01:13:25PM +0200, Lucas Nussbaum wrote:
> > Source: samba4
> > Version: 4.0.0~beta2+dfsg1-3.2
> > Severity: serious
> > Tags: jessie sid
> > User: debian...@lists.debian.org
> > Usertags: qa-ftbfs-20130620 qa-ftbfs
> > Justification: FTBFS on amd64
> 
> > During a rebuild of all packages in sid, your package failed to build on
> > amd64.
> 
> The samba4 package in testing/unstable is superseded by the samba package
> version 4.0.3 now in experimental.  Once that reaches unstable, the samba4
> source package should be dropped as obsolete.
> 
> Release team should feel free to remove this package from testing at any
> time to eliminate this RC bug.

The attached patch is what Jelmer used to fix the issue, and was (if I
recall correctly) in the samba4 experimental packages before we updated
to a modern version of Samba including the fix upstream.

That said, I don't propose we do anything other than migrate samba4 in
from experimental to fix this.

Andrew Bartlett

-- 
Andrew Bartlett                                http://samba.org/~abartlet/
Authentication Developer, Samba Team           http://samba.org

>From e1a819ea18aa3ecfcddb76ec681f520db162338e Mon Sep 17 00:00:00 2001
From: Jelmer Vernooij <jel...@samba.org>
Date: Sun, 16 Dec 2012 15:01:53 +0100
Subject: [PATCH] wafsamba: python-config is not always a script.

---
 buildtools/wafadmin/Tools/python.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/buildtools/wafadmin/Tools/python.py b/buildtools/wafadmin/Tools/python.py
index c2af312..a15e1f6 100644
--- a/buildtools/wafadmin/Tools/python.py
+++ b/buildtools/wafadmin/Tools/python.py
@@ -259,7 +259,7 @@ MACOSX_DEPLOYMENT_TARGET = %r
 
 	includes = []
 	if python_config:
-		for incstr in Utils.cmd_output("%s %s --includes" % (python, python_config)).strip().split():
+		for incstr in Utils.cmd_output("%s --includes" % (python_config,)).strip().split():
 			# strip the -I or /I
 			if (incstr.startswith('-I')
 			    or incstr.startswith('/I')):
-- 
1.7.11.7

Reply via email to