From bc71117cd71b297fb41817c0a2da7921e405b2b4 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sun, 3 May 2015 11:27:26 -0400 Subject: [PATCH] Always set the 64-bit mark as it is only applied when needed --- src/scripts/find-common | 10 ---------- src/scripts/functions-constants | 2 ++ 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/src/scripts/find-common b/src/scripts/find-common index 22ce747e9..d2fc80cfa 100644 --- a/src/scripts/find-common +++ b/src/scripts/find-common @@ -1,13 +1,3 @@ #!/bin/bash . ${BASEDIR}/functions-common - -# Find marker for 64 bit binaries. -case "$(uname -m)" in - i?86|x86_64) - mark64="()(64bit)" - ;; - *) - mark64="" - ;; -esac diff --git a/src/scripts/functions-constants b/src/scripts/functions-constants index 80256f9ff..99e4b7ac5 100644 --- a/src/scripts/functions-constants +++ b/src/scripts/functions-constants @@ -19,3 +19,5 @@ done ORPHAN_CANDIDATES="${ORPHAN_CANDIDATES} /usr/lib/pkgconfig" ORPHAN_CANDIDATES="${ORPHAN_CANDIDATES} /usr/lib/python*" +# Mark for 64bit +mark64="()(64bit)" -- 2.39.5