mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-28 21:56:31 +00:00
evemu: use sysroot provided input.h file (instead of host system version)
Add patch for src/make-event-names.py to use sysroot provided input.h instead of hard coded '/usr/include/linux/input.h' (host system version) one. Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
909382c357
commit
891926e87d
@ -0,0 +1,30 @@
|
|||||||
|
From d2c08aafcae8a0af3cb5a6ae873bbcbd567eae95 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Peter Seiderer <ps.report@gmx.net>
|
||||||
|
Date: Fri, 25 Apr 2014 22:30:06 +0200
|
||||||
|
Subject: [PATCH] make-event-names: use input.h from sysroot (instead of host
|
||||||
|
system version)
|
||||||
|
|
||||||
|
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
|
||||||
|
---
|
||||||
|
src/make-event-names.py | 4 +++-
|
||||||
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/src/make-event-names.py b/src/make-event-names.py
|
||||||
|
index 2092cfd..5bbc669 100755
|
||||||
|
--- a/src/make-event-names.py
|
||||||
|
+++ b/src/make-event-names.py
|
||||||
|
@@ -7,8 +7,10 @@
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
import argparse
|
||||||
|
+import os
|
||||||
|
|
||||||
|
-SOURCE_FILE = "/usr/include/linux/input.h"
|
||||||
|
+# environment variable SYSROOT set by buildroot for cross-compilation
|
||||||
|
+SOURCE_FILE = os.environ.get('SYSROOT', '') + "/usr/include/linux/input.h"
|
||||||
|
|
||||||
|
class Bits(object):
|
||||||
|
pass
|
||||||
|
--
|
||||||
|
1.8.1.4
|
||||||
|
|
@ -14,6 +14,10 @@ EVEMU_LICENSE_FILES = COPYING COPYING.GPL3
|
|||||||
# which doesn't have all the needed modules enabled, breaking the build
|
# which doesn't have all the needed modules enabled, breaking the build
|
||||||
EVEMU_CONF_ENV = ac_cv_path_ASCIIDOC=""
|
EVEMU_CONF_ENV = ac_cv_path_ASCIIDOC=""
|
||||||
|
|
||||||
|
# needed for make-event-names.py to find sysroot provided input.h (instead
|
||||||
|
# of host system version)
|
||||||
|
EVEMU_MAKE_ENV = SYSROOT=$(STAGING_DIR)
|
||||||
|
|
||||||
# Uses PKG_CHECK_MODULES() in configure.ac
|
# Uses PKG_CHECK_MODULES() in configure.ac
|
||||||
EVEMU_DEPENDENCIES = host-pkgconf libevdev
|
EVEMU_DEPENDENCIES = host-pkgconf libevdev
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user