1From 7ace0656bd325f9e7749f2cde641eddc057bc98a Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Thu, 9 Jan 2020 15:38:06 +0100
4Subject: [PATCH] Makefile: do not use dpkg for determining OS type
5
6Upstream-Status: Inappropriate [oe-core specific]
7Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
8---
9 Makefile | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12diff --git a/Makefile b/Makefile
13index 0ce2fa3..739aef2 100644
14--- a/Makefile
15+++ b/Makefile
16@@ -1,6 +1,6 @@
17 VERSION ?= 0.8
18 CFLAGS ?= -Wall -W -Wno-unused-parameter -g -O2
19-ARCH := $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
20+ARCH := linux
21
22 BASEDIR ?= $(DESTDIR)
23
24