summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-filter/ebtables/ebtables_2.0.10-4.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-networking/recipes-filter/ebtables/ebtables_2.0.10-4.bb')
-rw-r--r--meta-networking/recipes-filter/ebtables/ebtables_2.0.10-4.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-networking/recipes-filter/ebtables/ebtables_2.0.10-4.bb b/meta-networking/recipes-filter/ebtables/ebtables_2.0.10-4.bb
index d5e7341a0..d89ee1a20 100644
--- a/meta-networking/recipes-filter/ebtables/ebtables_2.0.10-4.bb
+++ b/meta-networking/recipes-filter/ebtables/ebtables_2.0.10-4.bb
@@ -42,10 +42,10 @@ inherit update-rc.d systemd
42python __anonymous () { 42python __anonymous () {
43 import re 43 import re
44 44
45 karch = d.getVar('KARCH') 45 karch = d.getVar('TARGET_ARCH')
46 multilib = d.getVar('MLPREFIX') 46 multilib = d.getVar('MLPREFIX')
47 47
48 if multilib and karch == 'powerpc64': 48 if multilib and ( karch == 'powerpc64' or karch == 'arm' ):
49 searchstr = "lib.?32" 49 searchstr = "lib.?32"
50 reg = re.compile(searchstr) 50 reg = re.compile(searchstr)
51 if reg.search(multilib): 51 if reg.search(multilib):