Control: tags -1 patch

On Wed, 12 Nov 2014 08:51:50 +0100 Lucas Nussbaum <lu...@lucas-nussbaum.net> 
wrote:
> Hi,
> 
> During a rebuild of all packages in jessie (in a jessie chroot, not a
> sid chroot), your package failed to build on amd64.
> [...]
>
> > Checking that libogg sample program compiles...yes
> > Checking that libogg sample program links...no
> > make[1]: *** [override_dh_auto_clean] Error 1 

Here's a patch which fixes this. If you give me a moment, I'll sort out
a team upload for this in git.

Thanks,
James
--- a/scons/libs/clam_dependent_libs_checks.py
+++ b/scons/libs/clam_dependent_libs_checks.py
@@ -88,7 +88,7 @@ def test_sndfile( env, conf ) :
 	return True
 
 def test_oggvorbis( env, conf ) :
-	if not conf.CheckPkgConfigFile(['vorbisfile', 'vorbisenc']) :
+	if not conf.CheckPkgConfigFile(['vorbisfile', 'vorbisenc', 'vorbis', 'ogg']) :
 		return False
 	if not conf.CheckLibrarySample('libogg', 'c', None, libogg_test_code ) : return False
 	if not conf.CheckLibrarySample('libvorbis', 'c', None, libvorbis_test_code ) : return False

Reply via email to