[oe-commits] Richard Purdie : nasm: Fix case where ${B} != ${S} (partial)

git at git.openembedded.org git at git.openembedded.org
Mon Mar 18 13:17:28 UTC 2013


Module: openembedded-core.git
Branch: master-next
Commit: 578ca9e45bea3bb355cc9e3af9e33a3bbb832952
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=578ca9e45bea3bb355cc9e3af9e33a3bbb832952

Author: Richard Purdie <richard.purdie at linuxfoundation.org>
Date:   Mon Mar 18 02:05:06 2013 +0000

nasm: Fix case where ${B} != ${S} (partial)

Fix out of tree build by fixing cwd assumptions.

Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/recipes-devtools/nasm/nasm_2.10.07.bb |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-devtools/nasm/nasm_2.10.07.bb b/meta/recipes-devtools/nasm/nasm_2.10.07.bb
index 1c95ed8..bcecce4 100644
--- a/meta/recipes-devtools/nasm/nasm_2.10.07.bb
+++ b/meta/recipes-devtools/nasm/nasm_2.10.07.bb
@@ -13,8 +13,8 @@ SRC_URI[sha256sum] = "c056e2abc83816892e448f9e9e95a3d21e9e096f44341b9d4853f62a44
 inherit autotools
 
 do_configure_prepend () {
-	if [ -f aclocal.m4 ] && [ ! -f acinclude.m4 ]; then
-		mv aclocal.m4 acinclude.m4
+	if [ -f ${S}/aclocal.m4 ] && [ ! -f ${S}/acinclude.m4 ]; then
+		mv ${S}/aclocal.m4 ${S}/acinclude.m4
 	fi
 }
 





More information about the Openembedded-commits mailing list