summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2010-02-18 17:47:25 +0100
committerGuido Günther <agx@sigxcpu.org>2010-02-18 17:47:25 +0100
commit57a1357f1d14fb7eed811417686a641d06f9707a (patch)
treedfbed5c14cdec0d1e0e4165d4ff83b7912fa9a29
parent0fa82237fb055a4bbff580d2b857c1c9af1305ab (diff)
Exclude 32bit binaries when calling dh_shlibdeps
when building on amd64.
-rw-r--r--make-sgpkg.py3
1 files changed, 3 insertions, 0 deletions
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