summaryrefslogtreecommitdiff
path: root/packages/qt4/qte-functions.inc
diff options
context:
space:
mode:
Diffstat (limited to 'packages/qt4/qte-functions.inc')
-rw-r--r--packages/qt4/qte-functions.inc11
1 files changed, 0 insertions, 11 deletions
diff --git a/packages/qt4/qte-functions.inc b/packages/qt4/qte-functions.inc
deleted file mode 100644
index f0ffb0e612..0000000000
--- a/packages/qt4/qte-functions.inc
+++ /dev/null
@@ -1,11 +0,0 @@
-def qte_arch(d):
- import bb, re
- arch = bb.data.getVar('TARGET_ARCH', d, 1)
- if re.match("^i.86$", arch):
- arch = "x86"
- elif arch == "x86_64":
- arch = "x86"
- elif arch == "mipsel":
- arch = "mips"
- return arch
-