* [PATCH 0/2] fix rebuild for 2 recipes
@ 2014-10-10 5:55 Robert Yang
2014-10-10 5:55 ` [PATCH 1/2] libassuan: fix for rebuild Robert Yang
2014-10-10 5:55 ` [PATCH 2/2] wpa-supplicant: " Robert Yang
0 siblings, 2 replies; 3+ messages in thread
From: Robert Yang @ 2014-10-10 5:55 UTC (permalink / raw)
To: openembedded-core
The following changes since commit 16cedc3bce6fc37543e9ef053cd7c589e523ca1c:
package_ipk.bbclass: Fix SRC_URI whitespace handling (2014-10-06 16:03:03 +0100)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib rbt/rebuild
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rbt/rebuild
Robert Yang (2):
libassuan: fix for rebuild
wpa-supplicant: fix for rebuild
.../wpa-supplicant/wpa-supplicant.inc | 2 ++
meta/recipes-support/libassuan/libassuan_2.1.2.bb | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
--
1.7.9.5
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 1/2] libassuan: fix for rebuild
2014-10-10 5:55 [PATCH 0/2] fix rebuild for 2 recipes Robert Yang
@ 2014-10-10 5:55 ` Robert Yang
2014-10-10 5:55 ` [PATCH 2/2] wpa-supplicant: " Robert Yang
1 sibling, 0 replies; 3+ messages in thread
From: Robert Yang @ 2014-10-10 5:55 UTC (permalink / raw)
To: openembedded-core
Fixed when rebuild:
rm: cannot remove `/path/to/2.1.2-r0/libassuan-2.1.2/m4/*.m4': No such file or directory
The files may not exist when rebuild.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
meta/recipes-support/libassuan/libassuan_2.1.2.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-support/libassuan/libassuan_2.1.2.bb b/meta/recipes-support/libassuan/libassuan_2.1.2.bb
index 6d89107..97dec6a 100644
--- a/meta/recipes-support/libassuan/libassuan_2.1.2.bb
+++ b/meta/recipes-support/libassuan/libassuan_2.1.2.bb
@@ -22,5 +22,5 @@ inherit autotools texinfo binconfig-disabled pkgconfig
do_configure_prepend () {
# Else these could be used in prefernce to those in aclocal-copy
- rm ${S}/m4/*.m4
+ rm -f ${S}/m4/*.m4
}
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] wpa-supplicant: fix for rebuild
2014-10-10 5:55 [PATCH 0/2] fix rebuild for 2 recipes Robert Yang
2014-10-10 5:55 ` [PATCH 1/2] libassuan: fix for rebuild Robert Yang
@ 2014-10-10 5:55 ` Robert Yang
1 sibling, 0 replies; 3+ messages in thread
From: Robert Yang @ 2014-10-10 5:55 UTC (permalink / raw)
To: openembedded-core
Fixed when rebuild:
make: *** No rule to make target `/path/to/old//sysroots/qemux86-64/usr/lib/dbus-1.0/include/dbus/dbus-arch-deps.h', needed by `dbus/dbus_old.o'. Stop.
The .d files save the path of the dependencies files which may not exist
when rebuild, we can remove them to make the rebuild work.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
.../wpa-supplicant/wpa-supplicant.inc | 2 ++
1 file changed, 2 insertions(+)
diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant.inc b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant.inc
index 3a1cce0..7923bb9 100644
--- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant.inc
+++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant.inc
@@ -50,6 +50,8 @@ do_configure () {
sed -i "s/%ssl%/$ssl/" wpa_supplicant/.config
fi
+ # For rebuild
+ rm -f wpa_supplicant/*.d wpa_supplicant/dbus/*.d
}
export EXTRA_CFLAGS = "${CFLAGS}"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-10-10 5:55 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-10 5:55 [PATCH 0/2] fix rebuild for 2 recipes Robert Yang
2014-10-10 5:55 ` [PATCH 1/2] libassuan: fix for rebuild Robert Yang
2014-10-10 5:55 ` [PATCH 2/2] wpa-supplicant: " Robert Yang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox