diff options
author | Changqing Li <changqing.li@windriver.com> | 2022-05-30 15:14:26 +0800 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2022-06-07 10:03:30 -0400 |
commit | e8519630701606ad8968c48597c2f79df11b2591 (patch) | |
tree | 8f1de5a9cf6ac87c5c8172d052a7b1d45f01313c /recipes-containers/criu/files/0003-lib-Makefile-overwrite-install-lib-to-allow-multiarc.patch | |
parent | 2e787b9d75c6fd8efb964b24c6849c3f2dbbd3b6 (diff) | |
download | meta-virtualization-e8519630701606ad8968c48597c2f79df11b2591.tar.gz |
criu: fix patch fuzz and remove unused patch
Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-containers/criu/files/0003-lib-Makefile-overwrite-install-lib-to-allow-multiarc.patch')
-rw-r--r-- | recipes-containers/criu/files/0003-lib-Makefile-overwrite-install-lib-to-allow-multiarc.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/recipes-containers/criu/files/0003-lib-Makefile-overwrite-install-lib-to-allow-multiarc.patch b/recipes-containers/criu/files/0003-lib-Makefile-overwrite-install-lib-to-allow-multiarc.patch new file mode 100644 index 00000000..210fbe7c --- /dev/null +++ b/recipes-containers/criu/files/0003-lib-Makefile-overwrite-install-lib-to-allow-multiarc.patch | |||
@@ -0,0 +1,30 @@ | |||
1 | From 0a04c5bc80319485e17e9a86e799fe2c5bfa3d38 Mon Sep 17 00:00:00 2001 | ||
2 | From: Mark Asselstine <mark.asselstine@windriver.com> | ||
3 | Date: Fri, 8 Sep 2017 15:40:49 -0400 | ||
4 | Subject: [PATCH 3/3] lib/Makefile: overwrite install-lib, to allow multiarch | ||
5 | |||
6 | I am not sure why Yocto installs python modules in arch specific | ||
7 | /usr/libXX directories but it does. Allow the recipe to pass this via | ||
8 | INSTALL_LIB. | ||
9 | |||
10 | Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> | ||
11 | --- | ||
12 | lib/Makefile | 2 +- | ||
13 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
14 | |||
15 | diff --git a/lib/Makefile b/lib/Makefile | ||
16 | index 575a7bad3..f503d430b 100644 | ||
17 | --- a/lib/Makefile | ||
18 | +++ b/lib/Makefile | ||
19 | @@ -59,7 +59,7 @@ install: lib-c lib-a lib-py crit/crit lib/c/criu.pc.in | ||
20 | $(Q) sed -e 's,@version@,$(CRIU_VERSION),' -e 's,@libdir@,$(LIBDIR),' -e 's,@includedir@,$(dir $(INCLUDEDIR)/criu/),' lib/c/criu.pc.in > lib/c/criu.pc | ||
21 | $(Q) install -m 644 lib/c/criu.pc $(DESTDIR)$(LIBDIR)/pkgconfig | ||
22 | $(E) " INSTALL " crit | ||
23 | - $(Q) $(PYTHON) scripts/crit-setup.py install --prefix=$(DESTDIR)$(PREFIX) --record $(CRIT_SETUP_FILES) | ||
24 | + $(Q) $(PYTHON) scripts/crit-setup.py install --prefix=$(DESTDIR)$(PREFIX) --record $(CRIT_SETUP_FILES) --install-lib=$(DESTDIR)$(INSTALL_LIB) | ||
25 | .PHONY: install | ||
26 | |||
27 | uninstall: | ||
28 | -- | ||
29 | 2.25.1 | ||
30 | |||