[oe-commits] Khem Raj : procps_3.2.7.bb: Fix compilation when usr/bin is same as /bin

git version control git at git.openembedded.org
Tue Mar 23 09:58:00 UTC 2010


Module: openembedded.git
Branch: stable/2009
Commit: 0a8318652f12c4139c9e8b36b94ff80e73be556e
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=0a8318652f12c4139c9e8b36b94ff80e73be556e

Author: Khem Raj <raj.khem at gmail.com>
Date:   Mon Mar 22 01:05:23 2010 +0000

procps_3.2.7.bb: Fix compilation when usr/bin is same as /bin

* On DISTROs like micro where bindir and base_bindir are
  same, procps does not compile because it wants to install
  binaries in both places. We have to pass the variable to
  make file since it does not use autotools.

Signed-off-by: Khem Raj <raj.khem at gmail.com>
Acked-by: Koen Kooi <koen at openembedded.org>
Acked-by: Philip Balister <philip at balister.org>

---

 recipes/procps/procps_3.2.7.bb |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/recipes/procps/procps_3.2.7.bb b/recipes/procps/procps_3.2.7.bb
index 6da975a..b31b683 100644
--- a/recipes/procps/procps_3.2.7.bb
+++ b/recipes/procps/procps_3.2.7.bb
@@ -1,6 +1,6 @@
 require procps.inc
 
-PR = "r8"
+PR = "r9"
 
 inherit update-rc.d
 
@@ -23,6 +23,9 @@ CONFFILES_${PN} = "${sysconfdir}/sysctl.conf"
 
 EXTRA_OEMAKE = "CFLAGS=-I${STAGING_INCDIR} \
                 CPPFLAGS=-I${STAGING_INCDIR} \
+		usr/bin=${D}${bindir}/ \
+		bin=${D}${base_bindir}/ \
+		usr/proc/bin=${D}${bindir}/ \
                 LDFLAGS="${LDFLAGS}" \
                 CURSES=-lncurses \
                 install='install -D' \





More information about the Openembedded-commits mailing list