From 57a1357f1d14fb7eed811417686a641d06f9707a Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Thu, 18 Feb 2010 17:47:25 +0100 Subject: Exclude 32bit binaries when calling dh_shlibdeps when building on amd64. --- make-sgpkg.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/make-sgpkg.py b/make-sgpkg.py index 824d9b8..27285ff 100644 --- a/make-sgpkg.py +++ b/make-sgpkg.py @@ -109,11 +109,14 @@ def gen_rules(debiandir, arch): if arch == "amd64": # ignore 32bit libs on amd64 excludes = [ "libGnomeConnect.so", "libJPlatin.so" ] + # exclude 32bit binaries + excludes += [ "bin/sapftp", "bin/saphttp" ] # these were additionally shipped with 719: excludes += [ "libKde3Connect.so" ] else: # ignore 64bit libs on i386 excludes = [ "libGnomeConnect64.so", "libJPlatin64.so" ] + ignore_libs = " ".join([ "--exclude=%s" % e for e in excludes ]) contents = """#!/usr/bin/make -f -- cgit v1.2.3