diff options
Diffstat (limited to 'meta/recipes-graphics/wayland/libinput/0001-tools-Fix-race-in-autotools-install.patch')
-rw-r--r-- | meta/recipes-graphics/wayland/libinput/0001-tools-Fix-race-in-autotools-install.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/meta/recipes-graphics/wayland/libinput/0001-tools-Fix-race-in-autotools-install.patch b/meta/recipes-graphics/wayland/libinput/0001-tools-Fix-race-in-autotools-install.patch deleted file mode 100644 index 4667538c5e..0000000000 --- a/meta/recipes-graphics/wayland/libinput/0001-tools-Fix-race-in-autotools-install.patch +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | From 5e8864c5b7a2e258eea041b0ef66dac7fcab9b7f Mon Sep 17 00:00:00 2001 | ||
2 | From: Jussi Kukkonen <jussi.kukkonen@intel.com> | ||
3 | Date: Wed, 9 Aug 2017 09:47:14 +0300 | ||
4 | Subject: [PATCH] tools: Fix race in (autotools) install | ||
5 | MIME-Version: 1.0 | ||
6 | Content-Type: text/plain; charset=UTF-8 | ||
7 | Content-Transfer-Encoding: 8bit | ||
8 | |||
9 | exec/data distinction is done based on install dir so compat scripts | ||
10 | must be moved in exec hook. | ||
11 | |||
12 | This should fix this occasional failure: | ||
13 | | install: cannot change permissions of | ||
14 | | ‘/usr/bin/libinput-debug-events.compat’: No such file or directory | ||
15 | |||
16 | Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com> | ||
17 | Upstream-Status: Submitted | ||
18 | --- | ||
19 | tools/Makefile.am | 2 +- | ||
20 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
21 | |||
22 | diff --git a/tools/Makefile.am b/tools/Makefile.am | ||
23 | index 2c8660b..7ee8b90 100644 | ||
24 | --- a/tools/Makefile.am | ||
25 | +++ b/tools/Makefile.am | ||
26 | @@ -63,7 +63,7 @@ endif | ||
27 | |||
28 | EXTRA_DIST = make-ptraccel-graphs.sh install-compat-scripts.sh $(bin_SCRIPTS) | ||
29 | |||
30 | -install-data-hook: | ||
31 | +install-exec-hook: | ||
32 | (cd $(DESTDIR)$(bindir) && mv libinput-list-devices.compat libinput-list-devices) | ||
33 | (cd $(DESTDIR)$(bindir) && mv libinput-debug-events.compat libinput-debug-events) | ||
34 | |||
35 | -- | ||
36 | 2.13.3 | ||
37 | |||