diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-21 22:45:44 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-22 16:54:37 +0000 |
commit | 0b679927feee2ecfd77a32df0d29dec83ae0a32f (patch) | |
tree | ee080f6c8d9bba4e741f010fe6dbc53c3bbdf31c /meta/recipes-devtools/apt/apt.inc | |
parent | 659441212688bc6eb23b8506f2eca4346748cc10 (diff) | |
download | poky-0b679927feee2ecfd77a32df0d29dec83ae0a32f.tar.gz |
apt: Fix case where ${B} != ${S}
Need to reference objects from ${B}.
(From OE-Core rev: 0610cf3ef864acc9ca98498b9810bcce0fbb935a)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/apt/apt.inc')
-rw-r--r-- | meta/recipes-devtools/apt/apt.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/apt/apt.inc b/meta/recipes-devtools/apt/apt.inc index e3ca6d028d..83411a968a 100644 --- a/meta/recipes-devtools/apt/apt.inc +++ b/meta/recipes-devtools/apt/apt.inc | |||
@@ -18,8 +18,8 @@ inherit autotools gettext | |||
18 | EXTRA_AUTORECONF = "--exclude=autopoint,autoheader" | 18 | EXTRA_AUTORECONF = "--exclude=autopoint,autoheader" |
19 | 19 | ||
20 | do_configure_prepend() { | 20 | do_configure_prepend() { |
21 | rm -rf buildlib/config.sub | 21 | rm -rf ${S}/buildlib/config.sub |
22 | rm -rf buildlib/config.guess | 22 | rm -rf ${S}/buildlib/config.guess |
23 | } | 23 | } |
24 | 24 | ||
25 | # Apt wants to know the glibc version by running a binary file, which will | 25 | # Apt wants to know the glibc version by running a binary file, which will |