mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-10 08:04:56 +02:00
* fixes gvfs with libmtp in PACKAGECONFIG: | Cross dependency libmtp found: NO found '1.1.5' but need: '>= 1.1.12' | | meson.build:436:2: ERROR: Invalid version of dependency, need 'libmtp' ['>= 1.1.12'] found '1.1.5'. * license checksum changed by change of copyright year * Do not pin udev rules to old version -> let native binary create them * Install udev rules to /lib/udev (as before the update) otherwise they are ignored Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
44 lines
1.2 KiB
Diff
44 lines
1.2 KiB
Diff
From 4e8eab047a43e48bd541f2887104299fcfb99b0d Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
|
|
Date: Tue, 27 Nov 2018 12:03:20 +0100
|
|
Subject: [PATCH] Use native mtp-hotplug
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Upstream-Status: Inappropriate [OE-specific]
|
|
|
|
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
|
|
---
|
|
Makefile.am | 8 ++++----
|
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/Makefile.am b/Makefile.am
|
|
index 7b7e06b..083e1c6 100644
|
|
--- a/Makefile.am
|
|
+++ b/Makefile.am
|
|
@@ -16,16 +16,16 @@ hwdb_DATA=69-libmtp.hwdb
|
|
noinst_DATA=libmtp.usermap libmtp.fdi
|
|
|
|
libmtp.usermap: util/mtp-hotplug
|
|
- util/mtp-hotplug > libmtp.usermap
|
|
+ mtp-hotplug > libmtp.usermap
|
|
|
|
@UDEV_RULES@: util/mtp-hotplug
|
|
- util/mtp-hotplug -u -p"@UDEV@" @UDEV_GROUP@ @UDEV_MODE@ > @UDEV_RULES@
|
|
+ mtp-hotplug -u -p"@UDEV@" @UDEV_GROUP@ @UDEV_MODE@ > @UDEV_RULES@
|
|
|
|
libmtp.fdi: util/mtp-hotplug
|
|
- util/mtp-hotplug -H > libmtp.fdi
|
|
+ mtp-hotplug -H > libmtp.fdi
|
|
|
|
$(hwdb_DATA): util/mtp-hotplug
|
|
- util/mtp-hotplug -w > $(hwdb_DATA)
|
|
+ mtp-hotplug -w > $(hwdb_DATA)
|
|
|
|
CLEANFILES = libmtp.usermap @UDEV_RULES@ libmtp.fdi libmtp.hwdb
|
|
endif
|
|
--
|
|
2.14.5
|
|
|