Added the generic library path used by multilib code

Signed-off-by: Naveen Saini <[email protected]>
---
 .../0001-Makefile-fix-multilib-build-failure.patch | 89 ++++++++++++++++++++++
 meta-oe/recipes-kernel/pm-graph/pm-graph_5.3.bb    |  5 +-
 2 files changed, 92 insertions(+), 2 deletions(-)
 create mode 100644 
meta-oe/recipes-kernel/pm-graph/pm-graph/0001-Makefile-fix-multilib-build-failure.patch

diff --git 
a/meta-oe/recipes-kernel/pm-graph/pm-graph/0001-Makefile-fix-multilib-build-failure.patch
 
b/meta-oe/recipes-kernel/pm-graph/pm-graph/0001-Makefile-fix-multilib-build-failure.patch
new file mode 100644
index 0000000..56981d9
--- /dev/null
+++ 
b/meta-oe/recipes-kernel/pm-graph/pm-graph/0001-Makefile-fix-multilib-build-failure.patch
@@ -0,0 +1,89 @@
+From 50cea8fd3c07ab27da6edce865a49339f16f3b57 Mon Sep 17 00:00:00 2001
+From: Naveen Saini <[email protected]>
+Date: Tue, 18 Jun 2019 17:10:15 +0800
+Subject: [PATCH] Makefile: fix multilib build failure
+
+Upstream-Status: Inappropriate [oe specific]
+
+Signed-off-by: Naveen Saini <[email protected]>
+---
+ Makefile | 50 +++++++++++++++++++++++++++-----------------------
+ 1 file changed, 27 insertions(+), 23 deletions(-)
+
+diff --git a/Makefile b/Makefile
+index 8455415..4aa0786 100644
+--- a/Makefile
++++ b/Makefile
+@@ -1,30 +1,34 @@
+ # SPDX-License-Identifier: GPL-2.0
+ PREFIX                ?= /usr
+ DESTDIR               ?=
++BASELIB               ?=
+ 
+ all:
+       @echo "Nothing to build"
+ 
++clean:
++      @echo "Nothing to clean"
++
+ install : uninstall
+-      install -d  $(DESTDIR)$(PREFIX)/lib/pm-graph
+-      install sleepgraph.py $(DESTDIR)$(PREFIX)/lib/pm-graph
+-      install bootgraph.py $(DESTDIR)$(PREFIX)/lib/pm-graph
+-      install -d  $(DESTDIR)$(PREFIX)/lib/pm-graph/config
+-      install -m 644 config/cgskip.txt $(DESTDIR)$(PREFIX)/lib/pm-graph/config
+-      install -m 644 config/freeze-callgraph.cfg 
$(DESTDIR)$(PREFIX)/lib/pm-graph/config
+-      install -m 644 config/freeze.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
+-      install -m 644 config/freeze-dev.cfg 
$(DESTDIR)$(PREFIX)/lib/pm-graph/config
+-      install -m 644 config/standby-callgraph.cfg 
$(DESTDIR)$(PREFIX)/lib/pm-graph/config
+-      install -m 644 config/standby.cfg 
$(DESTDIR)$(PREFIX)/lib/pm-graph/config
+-      install -m 644 config/standby-dev.cfg 
$(DESTDIR)$(PREFIX)/lib/pm-graph/config
+-      install -m 644 config/suspend-callgraph.cfg 
$(DESTDIR)$(PREFIX)/lib/pm-graph/config
+-      install -m 644 config/suspend.cfg 
$(DESTDIR)$(PREFIX)/lib/pm-graph/config
+-      install -m 644 config/suspend-dev.cfg 
$(DESTDIR)$(PREFIX)/lib/pm-graph/config
+-      install -m 644 config/suspend-x2-proc.cfg 
$(DESTDIR)$(PREFIX)/lib/pm-graph/config
++      install -d  $(DESTDIR)$(PREFIX)/$(BASELIB)/pm-graph
++      install sleepgraph.py $(DESTDIR)$(PREFIX)/$(BASELIB)/pm-graph
++      install bootgraph.py $(DESTDIR)$(PREFIX)/$(BASELIB)/pm-graph
++      install -d  $(DESTDIR)$(PREFIX)/$(BASELIB)/pm-graph/config
++      install -m 644 config/cgskip.txt 
$(DESTDIR)$(PREFIX)/$(BASELIB)/pm-graph/config
++      install -m 644 config/freeze-callgraph.cfg 
$(DESTDIR)$(PREFIX)/$(BASELIB)/pm-graph/config
++      install -m 644 config/freeze.cfg 
$(DESTDIR)$(PREFIX)/$(BASELIB)/pm-graph/config
++      install -m 644 config/freeze-dev.cfg 
$(DESTDIR)$(PREFIX)/$(BASELIB)/pm-graph/config
++      install -m 644 config/standby-callgraph.cfg 
$(DESTDIR)$(PREFIX)/$(BASELIB)/pm-graph/config
++      install -m 644 config/standby.cfg 
$(DESTDIR)$(PREFIX)/$(BASELIB)/pm-graph/config
++      install -m 644 config/standby-dev.cfg 
$(DESTDIR)$(PREFIX)/$(BASELIB)/pm-graph/config
++      install -m 644 config/suspend-callgraph.cfg 
$(DESTDIR)$(PREFIX)/$(BASELIB)/pm-graph/config
++      install -m 644 config/suspend.cfg 
$(DESTDIR)$(PREFIX)/$(BASELIB)/pm-graph/config
++      install -m 644 config/suspend-dev.cfg 
$(DESTDIR)$(PREFIX)/$(BASELIB)/pm-graph/config
++      install -m 644 config/suspend-x2-proc.cfg 
$(DESTDIR)$(PREFIX)/$(BASELIB)/pm-graph/config
+ 
+       install -d  $(DESTDIR)$(PREFIX)/bin
+-      ln -s ../lib/pm-graph/bootgraph.py $(DESTDIR)$(PREFIX)/bin/bootgraph
+-      ln -s ../lib/pm-graph/sleepgraph.py $(DESTDIR)$(PREFIX)/bin/sleepgraph
++      ln -s ../$(BASELIB)/pm-graph/bootgraph.py 
$(DESTDIR)$(PREFIX)/bin/bootgraph
++      ln -s ../$(BASELIB)/pm-graph/sleepgraph.py 
$(DESTDIR)$(PREFIX)/bin/sleepgraph
+ 
+       install -d  $(DESTDIR)$(PREFIX)/share/man/man8
+       install bootgraph.8 $(DESTDIR)$(PREFIX)/share/man/man8
+@@ -37,11 +41,11 @@ uninstall :
+       rm -f $(DESTDIR)$(PREFIX)/bin/bootgraph
+       rm -f $(DESTDIR)$(PREFIX)/bin/sleepgraph
+ 
+-      rm -f $(DESTDIR)$(PREFIX)/lib/pm-graph/config/*
+-      if [ -d $(DESTDIR)$(PREFIX)/lib/pm-graph/config ] ; then \
+-              rmdir $(DESTDIR)$(PREFIX)/lib/pm-graph/config; \
++      rm -f $(DESTDIR)$(PREFIX)/$(BASELIB)/pm-graph/config/*
++      if [ -d $(DESTDIR)$(PREFIX)/$(BASELIB)/pm-graph/config ] ; then \
++              rmdir $(DESTDIR)$(PREFIX)/$(BASELIB)/pm-graph/config; \
+       fi;
+-      rm -f $(DESTDIR)$(PREFIX)/lib/pm-graph/*
+-      if [ -d $(DESTDIR)$(PREFIX)/lib/pm-graph ] ; then \
+-              rmdir $(DESTDIR)$(PREFIX)/lib/pm-graph; \
++      rm -f $(DESTDIR)$(PREFIX)/$(BASELIB)/pm-graph/*
++      if [ -d $(DESTDIR)$(PREFIX)/$(BASELIB)/pm-graph ] ; then \
++              rmdir $(DESTDIR)$(PREFIX)/$(BASELIB)/pm-graph; \
+       fi;
+-- 
+2.17.1
+
diff --git a/meta-oe/recipes-kernel/pm-graph/pm-graph_5.3.bb 
b/meta-oe/recipes-kernel/pm-graph/pm-graph_5.3.bb
index de2d46d..ea12e05 100644
--- a/meta-oe/recipes-kernel/pm-graph/pm-graph_5.3.bb
+++ b/meta-oe/recipes-kernel/pm-graph/pm-graph_5.3.bb
@@ -6,11 +6,12 @@ LICENSE  = "GPL-2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e"
 
 SRCREV = "5be9a16547234cef5aca8bfaccd920490ea1cfa7"
-SRC_URI = "git://github.com/intel/pm-graph.git"
+SRC_URI = "git://github.com/intel/pm-graph.git \
+           file://0001-Makefile-fix-multilib-build-failure.patch"
 S = "${WORKDIR}/git"
 
 COMPATIBLE_HOST='(i.86|x86_64).*'
-EXTRA_OEMAKE = "PREFIX=${prefix} DESTDIR=${D}"
+EXTRA_OEMAKE = "PREFIX=${prefix} DESTDIR=${D} BASELIB=${baselib}"
 
 do_install() {
         oe_runmake install
-- 
2.7.4

-- 
_______________________________________________
Openembedded-devel mailing list
[email protected]
http://lists.openembedded.org/mailman/listinfo/openembedded-devel

Reply via email to