blob: 6e15a25224d6d981100b425b75d95a5d8aca168e [file] [log] [blame]
Patrick Williams864cc432023-02-09 14:54:44 -06001From 7fe516cbaf9fda09d99dcb54d4645367cffc8a4d Mon Sep 17 00:00:00 2001
Andrew Geissler82c905d2020-04-13 13:39:40 -05002From: 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>
Patrick Williams864cc432023-02-09 14:54:44 -06008
Andrew Geissler82c905d2020-04-13 13:39:40 -05009---
10 Makefile | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/Makefile b/Makefile
14index 0ce2fa3..739aef2 100644
15--- a/Makefile
16+++ b/Makefile
17@@ -1,6 +1,6 @@
18 VERSION ?= 0.8
19 CFLAGS ?= -Wall -W -Wno-unused-parameter -g -O2
20-ARCH := $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
21+ARCH := linux
22
23 BASEDIR ?= $(DESTDIR)
24