From 33dbb4d7f1222dff22f1997e11cd14909e721096 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Fri, 11 Nov 2011 14:31:15 -0500 Subject: [PATCH] udev: pull in elibtoolize fixes from upstream Current builds sometimes fail due to libtool relinking problems (having it use -L paths to the host system instead of the sysroot). Pull in a fix from upstream where we run elibtoolize to workaround that. BUG=chromium-os:21276 TEST=`emerge-arm-generic udev` works w/out -I/-L hacks TEST=`emerge-x86-generic udev` still works TEST=`emerge udev` still works Change-Id: I6c4e118999e125a647fa019a316d8d4ea6b6cec3 Reviewed-on: https://gerrit.chromium.org/gerrit/11535 Reviewed-by: David James Commit-Ready: Mike Frysinger Tested-by: Mike Frysinger --- .../third_party/portage-stable/sys-fs/udev/udev-171-r2.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sdk_container/src/third_party/portage-stable/sys-fs/udev/udev-171-r2.ebuild b/sdk_container/src/third_party/portage-stable/sys-fs/udev/udev-171-r2.ebuild index 8b744dd926..aa0fc0ac53 100644 --- a/sdk_container/src/third_party/portage-stable/sys-fs/udev/udev-171-r2.ebuild +++ b/sdk_container/src/third_party/portage-stable/sys-fs/udev/udev-171-r2.ebuild @@ -17,7 +17,7 @@ then vcs="git-2 autotools" fi -inherit ${vcs} eutils flag-o-matic multilib toolchain-funcs linux-info systemd +inherit ${vcs} eutils flag-o-matic multilib toolchain-funcs linux-info systemd libtool if [[ ${PV} != "9999" ]] then @@ -185,6 +185,8 @@ src_prepare() { then gtkdocize --copy || die "gtkdocize failed" eautoreconf + else + elibtoolize fi }