| Submitter | Richard Purdie |
|---|---|
| Date | Sept. 30, 2011, 10:16 p.m. |
| Message ID | <1317420972.4454.1.camel@ted> |
| Download | mbox | patch |
| Permalink | /patch/12595/ |
| State | New, archived |
| Headers | show |
Comments
On Fri, Sep 30, 2011 at 5:16 PM, Richard Purdie <richard.purdie@linuxfoundation.org> wrote: > The target SDK packages don't need to fulfil a shell dependency > so add /bin/sh to the list of packages we don't need to resolve. > > Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Acked-by: Matthew McClintock <msm@freescale.com>
Patch
diff --git a/meta/classes/populate_sdk_rpm.bbclass b/meta/classes/populate_sdk_rpm.bbclass index f1062fb..9989d0a 100644 --- a/meta/classes/populate_sdk_rpm.bbclass +++ b/meta/classes/populate_sdk_rpm.bbclass @@ -35,7 +35,7 @@ fakeroot populate_sdk_rpm () { export INSTALL_PACKAGES_NORMAL_RPM="${TOOLCHAIN_TARGET_TASK}" export INSTALL_PACKAGES_ATTEMPTONLY_RPM="" export INSTALL_PACKAGES_LINGUAS_RPM="" - export INSTALL_PROVIDENAME_RPM="/bin/bash /usr/bin/env /usr/bin/perl pkgconfig pkgconfig(pkg-config)" + export INSTALL_PROVIDENAME_RPM="/bin/sh /bin/bash /usr/bin/env /usr/bin/perl pkgconfig pkgconfig(pkg-config)" export INSTALL_TASK_RPM="populate_sdk-target" # Setup base system configuration
The target SDK packages don't need to fulfil a shell dependency so add /bin/sh to the list of packages we don't need to resolve. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> ---