| Submitter | Richard Purdie |
|---|---|
| Date | March 18, 2013, 2:05 a.m. |
| Message ID | <1363572312-13399-5-git-send-email-richard.purdie@linuxfoundation.org> |
| Download | mbox | patch |
| Permalink | /patch/46333/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/meta/recipes-extended/sudo/sudo.inc b/meta/recipes-extended/sudo/sudo.inc index babea37..7721cd5 100644 --- a/meta/recipes-extended/sudo/sudo.inc +++ b/meta/recipes-extended/sudo/sudo.inc @@ -16,8 +16,8 @@ inherit autotools EXTRA_OECONF = "--with-editor=/bin/vi --with-env-editor" do_configure_prepend () { - if [ ! -e acinclude.m4 ]; then - cat aclocal.m4 > acinclude.m4 + if [ ! -e ${S}/acinclude.m4 ]; then + cat ${S}/aclocal.m4 > ${S}/acinclude.m4 fi }
Fix out of tree builds by using full path to files in ${S} and remove cwd assumptions. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> --- meta/recipes-extended/sudo/sudo.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)