diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-18 02:05:06 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-18 13:18:24 +0000 |
commit | 915e133205650478c56699ee92b0e067ad785b5e (patch) | |
tree | 9919b4c3cb5f6cafaeac0ec6bde3a8f568a9abd7 /meta/recipes-devtools | |
parent | 6544a91329e082f1f3ffc957a386b03140f79f0d (diff) | |
download | poky-915e133205650478c56699ee92b0e067ad785b5e.tar.gz |
nasm: Fix case where ${B} != ${S} (partial)
Fix out of tree build by fixing cwd assumptions.
(From OE-Core rev: 1f7583d669f1d13cdc2ed0f7c468c65879489cca)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | 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 1c95ed82bc..bcecce4a81 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 | |||
13 | inherit autotools | 13 | inherit autotools |
14 | 14 | ||
15 | do_configure_prepend () { | 15 | do_configure_prepend () { |
16 | if [ -f aclocal.m4 ] && [ ! -f acinclude.m4 ]; then | 16 | if [ -f ${S}/aclocal.m4 ] && [ ! -f ${S}/acinclude.m4 ]; then |
17 | mv aclocal.m4 acinclude.m4 | 17 | mv ${S}/aclocal.m4 ${S}/acinclude.m4 |
18 | fi | 18 | fi |
19 | } | 19 | } |
20 | 20 | ||