diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-21 14:24:38 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-22 16:54:36 +0000 |
commit | 224b0c313009e9c64f324bcd2a19cf65e7b36a9e (patch) | |
tree | d260f8dc7aeffc89dd505ccaf471078bfb0d9b43 | |
parent | 512b8d22738def6aafc6c792599ec444bbe41ffd (diff) | |
download | poky-224b0c313009e9c64f324bcd2a19cf65e7b36a9e.tar.gz |
lzop: Fix case where ${B} != ${S}
Remove path assumptions and ensure out of tree builds work.
(From OE-Core rev: a0f054a733afb6dd6b1f53d304caefe90727d7a3)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/lzop/lzop_1.03.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-support/lzop/lzop_1.03.bb b/meta/recipes-support/lzop/lzop_1.03.bb index 63a2a62c83..8b5756ab57 100644 --- a/meta/recipes-support/lzop/lzop_1.03.bb +++ b/meta/recipes-support/lzop/lzop_1.03.bb | |||
@@ -20,7 +20,7 @@ SRC_URI[sha256sum] = "c1425b8c77d49f5a679d5a126c90ea6ad99585a55e335a613cae59e909 | |||
20 | inherit autotools | 20 | inherit autotools |
21 | 21 | ||
22 | do_configure () { | 22 | do_configure () { |
23 | ln -sf ../acinclude.m4 | 23 | ln -sf ../acinclude.m4 ${S}/acinclude.m4 |
24 | autotools_do_configure | 24 | autotools_do_configure |
25 | } | 25 | } |
26 | 26 | ||