* [PATCH 0/1] autotools.bbclass: force copy Makefile.in.in to ${S}/po/
@ 2013-06-26 1:58 rongqing.li
2013-06-26 1:58 ` [PATCH 1/1] " rongqing.li
0 siblings, 1 reply; 2+ messages in thread
From: rongqing.li @ 2013-06-26 1:58 UTC (permalink / raw)
To: openembedded-core
From: "Roy.Li" <rongqing.li@windriver.com>
The following changes since commit 8c35ba2d3048ce69f74f72cb2676e4bc162cfb63:
populate_sdk_base, adt_installer: abort install if path contains spaces (2013-06-25 17:59:13 +0100)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib roy/autotools
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=roy/autotools
Roy.Li (1):
autotools.bbclass: force copy Makefile.in.in to ${S}/po/
meta/classes/autotools.bbclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
1.7.10.4
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH 1/1] autotools.bbclass: force copy Makefile.in.in to ${S}/po/
2013-06-26 1:58 [PATCH 0/1] autotools.bbclass: force copy Makefile.in.in to ${S}/po/ rongqing.li
@ 2013-06-26 1:58 ` rongqing.li
0 siblings, 0 replies; 2+ messages in thread
From: rongqing.li @ 2013-06-26 1:58 UTC (permalink / raw)
To: openembedded-core
From: "Roy.Li" <rongqing.li@windriver.com>
If a Makefile.in.in has existed under ${S}/po/ and is read-only, cp will fail.
Signed-off-by: Roy.Li <rongqing.li@windriver.com>
---
meta/classes/autotools.bbclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass
index 66c0f5d..4e4ef98 100644
--- a/meta/classes/autotools.bbclass
+++ b/meta/classes/autotools.bbclass
@@ -201,7 +201,7 @@ autotools_do_configure() {
# We'd call gettextize here if it wasn't so broken...
cp ${STAGING_DATADIR_NATIVE}/gettext/config.rpath ${AUTOTOOLS_AUXDIR}/
if [ -d ${S}/po/ ]; then
- cp ${STAGING_DATADIR_NATIVE}/gettext/po/Makefile.in.in ${S}/po/
+ cp -f ${STAGING_DATADIR_NATIVE}/gettext/po/Makefile.in.in ${S}/po/
if [ ! -e ${S}/po/remove-potcdate.sin ]; then
cp ${STAGING_DATADIR_NATIVE}/gettext/po/remove-potcdate.sin ${S}/po/
fi
--
1.7.10.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-06-26 1:58 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-26 1:58 [PATCH 0/1] autotools.bbclass: force copy Makefile.in.in to ${S}/po/ rongqing.li
2013-06-26 1:58 ` [PATCH 1/1] " rongqing.li
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox